Skip to content
Snippets Groups Projects
Commit ce7565f7 authored by Hans-Jörg's avatar Hans-Jörg
Browse files

Switch default logic to "all"

parent 1162d884
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ args_parser.add_argument(
dest="logics",
metavar="L",
nargs="*",
default=["UF"],
default=["all"],
type=str,
help="A list of logics. One for for each schedule.",
)
......
......@@ -23,7 +23,7 @@ args_parser.add_argument(
dest="logics",
metavar="L",
nargs="*",
default=["UF"],
default=["all"],
type=str,
help="The logics to analyze, comma separated, 'all' for all logics.",
)
......
......@@ -35,7 +35,7 @@ args_parser.add_argument(
dest="logics",
metavar="L",
nargs="*",
default=["UF"],
default=["all"],
type=str,
help="The logics to use for simulation. 'all' for all logics.",
)
......@@ -173,8 +173,6 @@ if __name__ == "__main__":
# Some pandas magic to do the simulation
for strategy_time, strategy in pre_schedule:
print(strategy_time, strategy)
jitter = rng.normal(args.mu, args.sigma, exps.shape[0])
solved = (exps[strategy] + jitter).loc[
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment