StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.6 KiB
46 lines
1.6 KiB
module.exports = function(grunt) {
|
|
|
|
grunt.initConfig({
|
|
"babel": {
|
|
options: {
|
|
sourceMap: true,
|
|
presets: ['es2015']
|
|
},
|
|
target: {
|
|
files: {
|
|
"target/Sylvester.js": "src/Sylvester.js",
|
|
"target/CircularLinkedList.js": "src/CircularLinkedList.js",
|
|
"target/Line.js": "src/Line.js",
|
|
"target/LineSegment.js": "src/LineSegment.js",
|
|
"target/LinkedList.js": "src/LinkedList.js",
|
|
"target/LinkedListNode.js": "src/LinkedListNode.js",
|
|
"target/Matrix.js": "src/Matrix.js",
|
|
"target/Plane.js": "src/Plane.js",
|
|
"target/Polygon.js": "src/Polygon.js",
|
|
"target/Vector.js": "src/Vector.js",
|
|
"target/Vertex.js": "src/Vertex.js",
|
|
"target/PRECISION.js": "src/PRECISION.js",
|
|
"target/Utils.js": "src/Utils.js"
|
|
}
|
|
}
|
|
},
|
|
"mochaTest": {
|
|
test: {
|
|
options: {
|
|
reporter: 'spec',
|
|
quiet: false,
|
|
clearRequireCache: false,
|
|
require: "babel-core/register"
|
|
},
|
|
src: ['test/**/*.js']
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.loadNpmTasks("grunt-babel");
|
|
grunt.loadNpmTasks('grunt-mocha-test');
|
|
|
|
grunt.registerTask("build", ["babel:target"]);
|
|
grunt.registerTask("test", ["build", "mochaTest:test"]);
|
|
|
|
}; |