Skip to content

Commit

Permalink
Updated labels of benchmark tests
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Jun 5, 2017
1 parent dbdfa7e commit ced9b3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/algebra.js
Expand Up @@ -18,10 +18,10 @@ console.log(' ' + math.derivative(derivativeExpr, 'x'));

var suite = new Benchmark.Suite();
suite
.add(pad('simplify '), function() {
.add(pad('algebra simplify '), function() {
var res = math.simplify(simplifyExpr);
})
.add(pad('derivative'), function() {
.add(pad('algebra derivative'), function() {
var res = math.derivative(derivativeExpr, 'x');
})
.on('cycle', function(event) {
Expand Down

0 comments on commit ced9b3a

Please sign in to comment.