Skip to content

Commit

Permalink
Merge pull request #873 from null-a/split-up-dists
Browse files Browse the repository at this point in the history
Split up dists.ad.js.
  • Loading branch information
stuhlmueller committed Jul 25, 2017
2 parents d2d0a5c + ff7c424 commit 9a14b3e
Show file tree
Hide file tree
Showing 47 changed files with 2,148 additions and 1,814 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ npm-debug.log
bundle/
docs/_build
docs/_templates
src/dists.js
src/dists.wppl
src/inference/enumerate.js
src/inference/elbo.js
src/inference/eubo.js
src/inference/dream/gradients.js
src/aggregation/ScoreAggregator.js
src/dists/*.js
!/src/dists/*.ad.js
src/math/numeric.js
2 changes: 1 addition & 1 deletion scripts/distHeader
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
var fs = require('fs');
var path = require('path');
var _ = require('lodash');
var dists = require('../src/dists.ad.js');
var dists = require('../src/dists');

var helpers = {
downcaseInitial: function(name) {
Expand Down
4 changes: 1 addition & 3 deletions scripts/distributionDocs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

'use strict';

// Require this version so that we don't need to run the build in
// order to build the docs.
var dists = require('../src/dists.ad.js');
var dists = require('../src/dists');
var _ = require('lodash');

function makeTemplates(obj) {
Expand Down

0 comments on commit 9a14b3e

Please sign in to comment.