1 | static double ai_solveQuestionInSubSpace_defautTimeOut = 60; |
2 | |
3 | static S ai_solveQuestionInSubSpace(L<T3<S>> seeds, L<T3<S>> lookingFor) {
|
4 | ret ai_solveQuestionInSubSpace(seeds, lookingFor, ai_solveQuestionInSubSpace_defautTimeOut); |
5 | } |
6 | |
7 | static S ai_solveQuestionInSubSpace(final L<T3<S>> seeds, final L<T3<S>> lookingFor, double maxSeconds) {
|
8 | ret (S) eitherAOpt(evalWithTimeout(maxSeconds, func { ai_solveQuestionInSubSpace_noTimeOut(seeds, lookingFor) }));
|
9 | } |
10 | |
11 | static S ai_solveQuestionInSubSpace(S q) {
|
12 | Pair<L<T3<S>>> p = ai_solveQuestion_seedAndLookingFor(q); |
13 | ret ai_solveQuestionInSubSpace(p.a, p.b); |
14 | } |
Began life as a copy of #1012068
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1012070 |
| Snippet name: | ai_solveQuestionInSubSpace |
| Eternal ID of this version: | #1012070/14 |
| Text MD5: | f6ef12c71113dd92965f954f044db687 |
| Author: | stefan |
| Category: | javax / a.i. |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2017-12-02 18:46:04 |
| Source code size: | 622 bytes / 14 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 747 / 771 |
| Version history: | 13 change(s) |
| Referenced in: | [show references] |