-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from issp-center-dev/multi_objective
- Loading branch information
Showing
17 changed files
with
873 additions
and
620 deletions.
There are no files selected for viewing
287 changes: 239 additions & 48 deletions
287
docs/sphinx/manual/en/source/notebook/tutorial_multi_objective.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
36 changes: 18 additions & 18 deletions
36
docs/sphinx/manual/ja/source/notebook/tutorial_multi_objective.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
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,2 +1,4 @@ | ||
from . import score | ||
from . import discrete | ||
from . import score_multi | ||
from . import discrete_multi |
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,5 +1,4 @@ | ||
from .policy import policy, policy_mo | ||
from .results import history, history_mo | ||
from .pareto import Pareto | ||
from .policy import policy | ||
from .results import history | ||
|
||
__all__ = ["policy", "policy_mo", "history", "history_mo", "Pareto"] | ||
# __all__ = ["policy", "history"] |
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
Oops, something went wrong.