Skip to content
Snippets Groups Projects
Commit 484d0ee5 authored by Thomas Kennedy's avatar Thomas Kennedy
Browse files

Update Monte Carlo Example from end of semester lecture

parent b35eb797
No related branches found
No related tags found
No related merge requests found
log.txt
......@@ -86,7 +86,7 @@ def main_without_a_table_flip():
integration
"""
num_points = int(sys.argv[1])
num_points = int(sys.argv[1]) # Unused in this version of main
limit_a = float(sys.argv[2])
limit_b = float(sys.argv[3])
max_magnitude = int(sys.argv[4])
......@@ -111,5 +111,6 @@ def main_without_a_table_flip():
if __name__ == "__main__":
# naive_main()
# not_so_naive_main()
main_without_a_table_flip()
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