-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef1a4d7
commit 095ad00
Showing
7 changed files
with
150 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
import { ResearchSettings } from "@/common/settings/research"; | ||
import { usiEngines } from "./usi"; | ||
import { testUSIEngine } from "./usi"; | ||
|
||
export const researchSettings: ResearchSettings = { | ||
usi: usiEngines, | ||
usi: testUSIEngine, | ||
enableMaxSeconds: false, | ||
maxSeconds: 5, | ||
}; | ||
|
||
export const researchSettingsMax5Seconds: ResearchSettings = { | ||
usi: usiEngines, | ||
usi: testUSIEngine, | ||
enableMaxSeconds: true, | ||
maxSeconds: 5, | ||
}; | ||
|
||
export const researchSettingsSecondaryEngines: ResearchSettings = { | ||
usi: usiEngines, | ||
secondaries: [{ usi: usiEngines }, { usi: usiEngines }], | ||
usi: testUSIEngine, | ||
secondaries: [{ usi: testUSIEngine }, { usi: testUSIEngine }], | ||
enableMaxSeconds: false, | ||
maxSeconds: 5, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters