Skip to content
Snippets Groups Projects
Commit cb229164 authored by Liyao Zhu's avatar Liyao Zhu
Browse files

game.py and agent.py structure build1

parent 3f961675
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,7 @@ import matplotlib.pyplot as plt ...@@ -8,6 +8,7 @@ import matplotlib.pyplot as plt
import numpy as np import numpy as np
import math import math
# Constants ____________________________________________________ # Constants ____________________________________________________
N = 100 # Size of the population N = 100 # Size of the population
......
agent.py 0 → 100644
import game
class Agent():
def __init__(self):
self.undefined = None
def chooseAction(selfs):
return 0
\ No newline at end of file
import agent
import matplotlib.pyplot as plt
import numpy as np
import math
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment