Revision d5c974ac9ce897791737b6f4e0cee5de2254e6f6 authored by Andreas Stuhlmueller on 31 January 2017, 02:56:40 UTC, committed by Andreas Stuhlmueller on 31 January 2017, 02:56:40 UTC
1 parent 22b8f88
Raw File
binomial.wppl
var binomial = function() {
  var a = flip();
  var b = flip();
  var c = flip();
  return a + b + c;
};

Infer({model: binomial});
back to top