Skip to content
Snippets Groups Projects
Commit 1daa952f authored by David Hendriks's avatar David Hendriks
Browse files

fixing other example scripts to work

parent a9b36359
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/python3 #!/usr/bin/python3
import binary_c import binary_c_python_api
############################################################ ############################################################
# Test script to run a binary using the binary_c Python # Test script to run a binary using the binary_c Python
...@@ -27,13 +27,13 @@ def run_test_binary(): ...@@ -27,13 +27,13 @@ def run_test_binary():
max_evolution_time, max_evolution_time,
) )
output = binary_c.run_binary(argstring) output = binary_c_python_api.run_binary(argstring)
print("\n\nBinary_c output:\n\n") print("\n\nBinary_c output:\n\n")
print(output) print(output)
binary_star = binary_c.new_system() # binary_star = binary_c_python_api.new_system()
print(binary_star) # print(binary_star)
run_test_binary() run_test_binary()
\ No newline at end of file
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