Spaces:
Runtime error
Runtime error
Create simulation.py
Browse files- agents/simulation.py +4 -0
agents/simulation.py
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import random
|
2 |
+
|
3 |
+
def simulate(hypothesis):
|
4 |
+
return random.choice(["Supports hypothesis", "Contradicts hypothesis", "Inconclusive"])
|