minmax-wt-alpha-beta-pruning
Version:
A generic minmax algorithm engine (with alpha-beta pruning) that can work with any game supplied by the user
47 lines (40 loc) • 1.25 kB
JavaScript
// flow-typed signature: aa9d2fcd027d59e1ca23acab5f2236c1
// flow-typed version: <<STUB>>/babel-register_v^6.14.0/flow_v0.35.0
/**
* This is an autogenerated libdef stub for:
*
* 'babel-register'
*
* Fill this stub out by replacing all the `any` types.
*
* Once filled out, we encourage you to share your work with the
* community by sending a pull request to:
* https://github.com/flowtype/flow-typed
*/
declare module 'babel-register' {
declare module.exports: any;
}
/**
* We include stubs for each file inside this npm package in case you need to
* require those files directly. Feel free to delete any files that aren't
* needed.
*/
declare module 'babel-register/lib/browser' {
declare module.exports: any;
}
declare module 'babel-register/lib/cache' {
declare module.exports: any;
}
declare module 'babel-register/lib/node' {
declare module.exports: any;
}
// Filename aliases
declare module 'babel-register/lib/browser.js' {
declare module.exports: $Exports<'babel-register/lib/browser'>;
}
declare module 'babel-register/lib/cache.js' {
declare module.exports: $Exports<'babel-register/lib/cache'>;
}
declare module 'babel-register/lib/node.js' {
declare module.exports: $Exports<'babel-register/lib/node'>;
}