From 6d78eb36bd81b5dbc2d4f541c5892ee5cf9ab819 Mon Sep 17 00:00:00 2001 From: martin Date: Wed, 31 Jan 2024 11:39:59 +0100 Subject: [PATCH] minor --- .gitignore | 1 - chl/draw_func.py | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 5d381cc..489bdd0 100644 --- a/.gitignore +++ b/.gitignore @@ -159,4 +159,3 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ - diff --git a/chl/draw_func.py b/chl/draw_func.py index 6951c58..92436d4 100755 --- a/chl/draw_func.py +++ b/chl/draw_func.py @@ -1266,11 +1266,11 @@ class Draw_Simulator: funcs = [ # Draw_Simulator.groups_6_4, # Draw_Simulator.groups_3_8, - Draw_Simulator.groups_2_12_martin, + # Draw_Simulator.groups_2_12_martin, # Draw_Simulator.groups_2_12_stephan, Draw_Simulator.groups_1_24_martin, # Draw_Simulator.groups_1_24_stephan, - Draw_Simulator.groups_3_8_stephan, + # Draw_Simulator.groups_3_8_stephan, ] @@ -1281,8 +1281,8 @@ Scenario.objects.filter(base_scenario=scenario).delete() stats = {} for func in funcs: - simulator = Draw_Simulator(algorithm='XP', opponent_func = func, html_output=False,use_db=True) - nSim = 2 + simulator = Draw_Simulator(algorithm='XP', opponent_func = func, html_output=True,use_db=True) + nSim = 4 stats[func.__name__] = simulator.simulate(nSim)