Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Hulette committed Jan 12, 2018
1 parent a9fff89 commit a788db3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
8 changes: 4 additions & 4 deletions js/perf/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
// under the License.

// Use the ES5 UMD target as perf baseline
const { col, DataFrame, Table, readVectors } = require('../targets/es5/umd');
// const { col, DataFrame, Table, readVectors } = require('../targets/es5/cjs');
// const { col, DataFrame, Table, readVectors } = require('../targets/es2015/umd');
// const { col, DataFrame, Table, readVectors } = require('../targets/es2015/cjs');
// const { col, Table, readVectors } = require('../targets/es5/umd');
// const { col, Table, readVectors } = require('../targets/es5/cjs');
// const { col, Table, readVectors } = require('../targets/es2015/umd');
const { col, Table, readVectors } = require('../targets/es2015/cjs');

const config = require('./config');
const Benchmark = require('benchmark');
Expand Down
9 changes: 0 additions & 9 deletions js/src/predicate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,15 +180,6 @@ class GTeq extends ComparisonPredicate {
const col_func = col.bind(cols);
return (idx: number, cols: Vector[]) => col_func(idx, cols) >= lit.v;
}
//eval(idx: number, cols: Vector[]) {
// return this.left.eval(idx, cols) >= this.right.eval(idx, cols);
//}
//emitString() {
// return `${this.left.emitString()} >= ${this.right.emitString()}`
//}
//createDictionaryEval(schema, lit: Literal, col: Col): (idx: number, cols: Vector[]) => boolean {
// return this.eval;
//}
}

export function lit(n: number): Value<any> { return new Literal(n); }
Expand Down

0 comments on commit a788db3

Please sign in to comment.