Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 5edc7ac5 authored by GUILLEMOT Alexandre's avatar GUILLEMOT Alexandre
Browse files

change to random root

parent 725e3f3b
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,8 @@ for v, vs, ve in zip(vars_parameter, data["path"][0], data["path"][1]): ...@@ -24,7 +24,8 @@ for v, vs, ve in zip(vars_parameter, data["path"][0], data["path"][1]):
vars_str = str(vars_data).replace("'", "") vars_str = str(vars_data).replace("'", "")
T_str = str(T).replace("'", "").replace("[", "{").replace("]", "}").replace("I", "ii") T_str = str(T).replace("'", "").replace("[", "{").replace("]", "}").replace("I", "ii")
S_str = str(S).replace("'", "").replace("[", "{").replace("]", "}").replace("I", "ii") S_str = str(S).replace("'", "").replace("[", "{").replace("]", "}").replace("I", "ii")
solsS_str = str([data["fiber"][0]]).replace("'", "").replace("[", "{").replace("]", "}").replace("I", "ii") import random
solsS_str = str([random.choice(data["fiber"])]).replace("'", "").replace("[", "{").replace("]", "}").replace("I", "ii")
script = open("script.m2", "w") script = open("script.m2", "w")
script.write(""" script.write("""
......
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