Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in tutorial 5 #94

Merged
merged 2 commits into from
Apr 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tutorials/robot-marbles-part-5/robot-marbles-part-5.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"To expand upon our previous examples, we will introduce the concept of using a graph network object that is updated during each state update. The ability to essential embed a graph 'database' into a state is a game changer for scalability, allowing increased complexity with multiple agents or components is represented, easily updated. Below, building upon our previous examples, we will represent the Robots and Marbles example with n boxes, and a variable number of marbles. \n",
"\n",
"## Behavior and Mechanisms:\n",
"* A network of robotic arms is capable of taking a marble from their one of their boxes and dropping it into the other one. \n",
"* A network of robotic arms is capable of taking a marble from one of their boxes and dropping it into the other one. \n",
"* Each robotic arm in the network only controls two boxes and they act by moving a marble from one box to the other.\n",
"* Each robotic arm is programmed to take one marble at a time from the box containing the most significant number of marbles and drop it in the other box. It repeats that process until the boxes contain an equal number of marbles.\n",
"* For our analysis of this system, suppose we are only interested in monitoring the number of marbles in only their two boxes."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"To expand upon our previous examples, we will introduce the concept of using a graph network object that is updated during each state update. The ability to essential embed a graph 'database' into a state is a game changer for scalability, allowing increased complexity with multiple agents or components is represented, easily updated. Below, building upon our previous examples, we will represent the Robots and Marbles example with n boxes, and a variable number of marbles.\n",
"\n",
"## Behavior and Mechanisms:\n",
"* A network of robotic arms is capable of taking a marble from their one of their boxes and dropping it into the other one.\n",
"* A network of robotic arms is capable of taking a marble from one of their boxes and dropping it into the other one.\n",
"* Each robotic arm in the network only controls two boxes and they act by moving a marble from one box to the other.\n",
"* Each robotic arm is programmed to take one marble at a time from the box containing the most significant number of marbles and drop it in the other box. It repeats that process until the boxes contain an equal number of marbles.\n",
"* For our analysis of this system, suppose we are only interested in monitoring the number of marbles in only their two boxes."
Expand Down