(height, width, map)
| 84 | } |
| 85 | |
| 86 | adjustMap(height, width, map) { |
| 87 | this.setState({ |
| 88 | numRow: height, |
| 89 | numCol: width, |
| 90 | map: map, |
| 91 | agents: [], |
| 92 | numAgents: 0, |
| 93 | startToAdd: false, |
| 94 | goalToAdd: false, |
| 95 | addedSRowClick: null, |
| 96 | addedSColClick: null, |
| 97 | }); |
| 98 | } |
| 99 | |
| 100 | setSpeed(speed) { |
| 101 | switch (speed) { |
no outgoing calls
no test coverage detected