Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Alexander R. Hankin
EE194_Manduca_Simulator_Demo
Commits
00712002
Commit
00712002
authored
May 02, 2018
by
David A.. Werner
Browse files
Added basic simulation
parent
197360ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
basic_simulation.py
0 → 100644
View file @
00712002
""" This is a script that generates the basic functionality of the
EE194_Manduca_Simulator package """
from
manduca
import
SimpleManduca
,
EvolutionSimulator
POPULATION_SIZE
,
NUM_GENERATIONS
=
10
,
25
num_legs
,
time_segments
,
time_step
=
2
,
4
,
10
def
random_manduca
():
return
SimpleManduca
.
random_individual
(
num_legs
,
time_segments
,
time_step
)
simulator
=
EvolutionSimulator
((
random_manduca
,
POPULATION_SIZE
))
simulator
.
run_simulation
(
NUM_GENERATIONS
)
print
simulator
.
history
[
-
1
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment