-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
auto-load simple/intermediate integration tasks, stable order for n_q…
…ueens (set was not stable)
- Loading branch information
1 parent
7517738
commit 057b9f2
Showing
4 changed files
with
127 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
from .intermediate_integration import IntermediateIntegrationConfig, IntermediateIntegrationDataset | ||
from .polynomial_equations import PolynomialEquationsConfig, PolynomialEquationsDataset | ||
from .simple_equations import SimpleEquationsConfig, SimpleEquationsDataset | ||
from .simple_integration import SimpleIntegrationConfig, SimpleIntegrationDataset | ||
|
||
__all__ = [ | ||
"SimpleEquationsDataset", | ||
"SimpleEquationsConfig", | ||
"IntermediateIntegrationConfig", | ||
"IntermediateIntegrationDataset", | ||
"PolynomialEquationsConfig", | ||
"PolynomialEquationsDataset", | ||
"SimpleEquationsDataset", | ||
"SimpleEquationsConfig", | ||
"SimpleIntegrationConfig", | ||
"SimpleIntegrationDataset", | ||
] |
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