globals [ winner ;;True/False variable to indicate whether the race has a winner leaderList ;;Listing of racers by descending order of meters traveled startLane ;;List of racers to evenly sort racers across the world adjustingSpeed ;4;A changing variable to adjust racers' speed depending on race length firstTime ;;Tracking variable for storing final time of first place racer seedTimes ;;Listing of racers by descending order of estimated finishing times haltRace ;;True/False variable to indicate when to terminate the program checkTactics ;;True/False variable to indicate when strategies are implemented, allows program to run finishingList ;;Listing of racers by placing at end of race ] breed ;;yellow racer [ runners runner ] breed ;;blue racers [ opponents opponent ] turtles-own [ meters ;;Keeps track of distance traveled in race lacticAcid ;;Keeps track of accumulation of % lactic acid (accumulated while running above base walking speed) frontPack ;;Indicator variable that tracks racers in the top 3 places leader ;;Keeps track of who is in the lead strategy ;;Sets the individual strategy for each racer baseSpeed ;;Sets the initial base speed of all racers runnersHigh ;;A bonus variable given to majority leader of the race that provides a slight speed boost for finishing kick finish ;;Keeps track of the amount of time each racer spends sitting after crossing the finish line, to help order the final standings draft ;;Indicator variable that tracks when racers are drafting other racers status ;;Indicator variable to track whether racers are racing or finished kick ;;Indicator variable that tracks when racers are running or kicking to the finish currentSurger ;;Indicator variable that tracks which racer will get the bonus speed kick near finish won ;;indicator variable to track who won the race effort ;;% amount of investment racers put into race, affects speed of racers adjust1 ;;Tactic adjustment strategy, racers kick when any other racer starts kicking, overrides prior tactic instructions winnerAggressive ;;Reports to monitor if winner of race was aggressive by point system winnerConservative ;;Reports to monitor if winner of race was conservative by point system ] to setup clear-all setTrack ;;resizes the world to adjust to appropriate race length, 1 patch is equal to 10 meters makeRacers ;;creates the racers setLimits ;;sets the adjusting speeds to match appropriate race length racePacket ;; reports the estimated finishing times for the racers to the output set winner false set checkTactics false set firstTime 0 reset-ticks end to setTrack if raceLength = 400 [resize-world -20 20 -10 10 set-patch-size 10 ask patches with [pxcor = -20] [set pcolor white] ask patches with [pxcor = -16 and pycor = -9] [set plabel "START"] ask patches with [pxcor = -10] [set pcolor white] ask patches with [pxcor = -12 and pycor = 9] [set plabel "100 METERS"] ask patches with [pxcor = 0] [set pcolor white] ask patches with [pxcor = -2 and pycor = 9] [set plabel "200 METERS"] ask patches with [pxcor = 10] [set pcolor white] ask patches with [pxcor = 8 and pycor = 9] [set plabel "300 METERS"] ask patches with [pxcor = 20] [set pcolor white] ask patches with [pxcor = 18 and pycor = 9] [set plabel "400 METERS"] ask patches with [pxcor = 18 and pycor = -9] [set plabel "FINISH"] ] if raceLength = 800 [resize-world -40 40 -20 20 set-patch-size 5 ask patches with [pxcor = -40] [set pcolor white] ask patches with [pxcor = -33 and pycor = -19] [set plabel "START"] ask patches with [pxcor = -20] [set pcolor white] ask patches with [pxcor = -22 and pycor = 19] [set plabel "200 METERS"] ask patches with [pxcor = 0] [set pcolor white] ask patches with [pxcor = -2 and pycor = 19] [set plabel "400 METERS"] ask patches with [pxcor = 20] [set pcolor white] ask patches with [pxcor = 18 and pycor = 19] [set plabel "600 METERS"] ask patches with [pxcor = 40] [set pcolor white] ask patches with [pxcor = 38 and pycor = 19] [set plabel "800 METERS"] ask patches with [pxcor = 39 and pycor = -19] [set plabel "FINISH"] ] if raceLength = 1600 [resize-world -80 80 -40 40 set-patch-size 2.5 ask patches with [pxcor = -80] [set pcolor white] ask patches with [pxcor = -67 and pycor = -39] [set plabel "START"] ask patches with [pxcor = -40] [set pcolor white] ask patches with [pxcor = -42 and pycor = 38] [set plabel "400 METERS"] ask patches with [pxcor = 0] [set pcolor white] ask patches with [pxcor = -2 and pycor = 38] [set plabel "800 METERS"] ask patches with [pxcor = 40] [set pcolor white] ask patches with [pxcor = 38 and pycor = 38] [set plabel "1200 METERS"] ask patches with [pxcor = 80] [set pcolor white] ask patches with [pxcor = 78 and pycor = 38] [set plabel "1600 METERS"] ask patches with [pxcor = 79 and pycor = -39] [set plabel "FINISH"] ] end to makeRacers create-runners 1 [set color yellow] create-opponents numOpponents [set color blue] ask turtles [set label who set label-color red set lacticAcid 0 set meters 0 set runnersHigh 0 set finish 0 set strategy raceStrategy set leader false set frontPack false set status "racing" set kick false set currentSurger false set won false set effort 0 set adjust1 false set winnerAggressive 0 set winnerConservative 0 set heading 90 if raceLength = 400 [set size 2] ;;adjustments to make racers visible as world resizes if raceLength = 800 [set size 5] if raceLength = 1600 [set size 10] let randSpeed list (turtles) (turtles) foreach randSpeed [ifelse variability? [set baseSpeed (random speedVariability / 100) if baseSpeed < 0.14 [set baseSpeed 0.14]] ;;higher speedVariability value equals more variance [set baseSpeed 0.14]] ;;based on average walking speed 5km/hr set startLane sort-on [who] turtles foreach sort-on [who] turtles [ let n position ? startLane + 1.5 ask ? [setxy min-pxcor (max-pycor - ((raceLength / 200) * n))] ] ] end to setLimits if raceLength = 400 [set adjustingSpeed (((raceLength / 48) / 10) - (max [baseSpeed] of turtles));;based on 44 second 400m, adjusts to fastest runner ] if raceLength = 800 [set adjustingSpeed (((raceLength / 104) / 10) - (max [baseSpeed] of turtles)) ;;based on 1:44 800m ] if raceLength = 1600 [set adjustingSpeed (((raceLength / 232) / 10) - (max [baseSpeed] of turtles)) ;;based on 3:52 1600m ] end to racePacket set seedTimes (sort-on [(- baseSpeed)] turtles) output-print "Heat Sheet / Seed Times" output-type item 0 seedTimes let bs0 [baseSpeed] of item 0 seedTimes let as0 bs0 + adjustingSpeed output-type precision (raceLength / (as0 * 10)) 3 output-print " seconds" if count turtles >= 2 [output-type item 1 seedTimes let bs1 [baseSpeed] of item 1 seedTimes let as1 bs1 + adjustingSpeed output-type precision (raceLength / (as1 * 10)) 3 output-print " seconds" ] if count turtles >= 3 [output-type item 2 seedTimes let bs2 [baseSpeed] of item 2 seedTimes let as2 bs2 + adjustingSpeed output-type precision (raceLength / (as2 * 10)) 3 output-print " seconds" ] if count turtles >= 4 [output-type item 3 seedTimes let bs3 [baseSpeed] of item 3 seedTimes let as3 bs3 + adjustingSpeed output-type precision (raceLength / (as3 * 10)) 3 output-print " seconds" ] if count turtles >= 5 [output-type item 4 seedTimes let bs4 [baseSpeed] of item 4 seedTimes let as4 bs4 + adjustingSpeed output-type precision (raceLength / (as4 * 10)) 3 output-print " seconds" ] if count turtles >= 6 [output-type item 5 seedTimes let bs5 [baseSpeed] of item 5 seedTimes let as5 bs5 + adjustingSpeed output-type precision (raceLength / (as5 * 10)) 3 output-print " seconds" ] if count turtles >= 7 [output-type item 6 seedTimes let bs6 [baseSpeed] of item 6 seedTimes let as6 bs6 + adjustingSpeed output-type precision (raceLength / (as6 * 10)) 3 output-print " seconds" ] if count turtles = 8 [output-type item 7 seedTimes let bs7 [baseSpeed] of item 7 seedTimes let as7 bs7 + adjustingSpeed output-type precision (raceLength / (as7 * 10)) 3 output-print " seconds" ] output-print "" end ;;2nd setup button (implement strategies), assigns strategies to racers to setupStrategies ifelse count turtles = 0 [user-message (word "Press the setup button before implementing strategies.")] ;;prevents implementing strategies before setup is complete [setStrategy ;;sets the strategies of racers based on user selection reportStrategies ;;reports racer strategies to output set checkTactics true] end ;;determines racers' strategies if random to setStrategy if raceStrategy = "conservative" [ask turtles [set strategy "conservative"] ] if raceStrategy = "aggressive" [ask turtles [set strategy "aggressive"] ] ;;random number of racers selected to be aggressive if raceStrategy = "random" [ ask turtles [set strategy "random"] let n count turtles + 1 ask n-of (random n) turtles [set strategy "aggressive"] ;;leftover racers not selected above are conservative ask turtles with [strategy = "random"] [set strategy "conservative"] ] end to reportStrategies output-print "Scouting Report" output-type count opponents with [strategy = "aggressive"] output-type " opponent(s) preparing aggresive tactics" output-print "" output-type count opponents with [strategy = "conservative"] output-type " opponent(s) preparing conservative tactics" output-print "" output-print "" output-type "Your chosen strategy was " output-type [strategy] of turtle 0 output-print "" output-print "" output-print "Leaderboard" end to go if checkTactics = false ;;checks to make sure strategies are set, otherwise send error message [user-message (word "No strategies provided for racers. Program cannot run.") stop] if haltRace = "true" ;;checks from 'leaderboard' function to see whether to terminate program [output-print "" output-type "With a winning time of " let totalTime ticks - firstTime let minutes floor (totalTime / 60) let seconds (((totalTime / 60) - minutes) * 60) output-type minutes output-type " minute(s) " output-type precision seconds 3 output-type " second(s)" stop] checkLead ;;program checks race progress of runners and reports the leaders to leaderList moveRacers ;;directions for racer movement adjustTactics ;;directions for racer decision-making mid-race leaderboard ;;provides leaderboard for race finish based on leaderList tick end to checkLead set leaderList (sort-on [(- meters)] turtles) if (count turtles) = 1 [foreach (sublist leaderList 0 1) [ask ? [set frontPack true]] ] if (count turtles) = 2 [foreach (sublist leaderList 0 2) [ask ? [set frontPack true]] ] if (count turtles) >= 3 [foreach (sublist leaderList 0 3) [ask ? [set frontPack true]] ] if (count turtles) = 4 [foreach (sublist leaderList 3 4) [ask ? [set frontPack false]] ] if (count turtles) = 5 [foreach (sublist leaderList 3 5) [ask ? [set frontPack false]] ] if (count turtles) = 6 [foreach (sublist leaderList 3 6) [ask ? [set frontPack false]] ] if (count turtles) = 7 [foreach (sublist leaderList 3 7) [ask ? [set frontPack false]] ] if (count turtles) = 8 [foreach (sublist leaderList 3 8) [ask ? [set frontPack false]] ] let l (item 0 leaderList) ask turtles [set leader false set draft false] ask l [set leader true if kick = false [set runnersHigh runnersHigh + 1]] ask turtles with [strategy = "conservative"] [if leader = false [if (count turtles) > 1 [set draft true] ] ] if winner = false [watch l] end to moveRacers ask-concurrent turtles [ if leader = true and meters >= raceLength [set winner true set finish finish + 1 if count turtles with [status = "finished"] < 3 [set status "finished"] ] if leader = false and meters >= raceLength [set finish finish + 1 if finish > 0 [if count turtles with [status = "finished"] < 3 [set status "finished"]] ] if meters >= raceLength [stop] if strategy = "conservative" and kick = false [ ifelse lacticAcid < 100 [ set effort conserveEffort fd ((baseSpeed + adjustingSpeed) * (effort / 100 )) ifelse draft = true [set lacticAcid (lacticAcid + (lacticAccumulationRate * (draftInefficiency / 100) * (effort / 100)))] [set lacticAcid (lacticAcid + (lacticAccumulationRate * (effort / 100)))] set meters meters + (((baseSpeed + adjustingSpeed) * (effort / 100)) * 10) ] [ fd baseSpeed set meters meters + (baseSpeed * 10) ] ] if strategy = "aggressive" and kick = false [ ifelse lacticAcid < 100 [ fd (baseSpeed + adjustingSpeed) set lacticAcid (lacticAcid + lacticAccumulationRate) set meters meters + ((baseSpeed + adjustingSpeed) * 10) ] [ fd baseSpeed set meters meters + (baseSpeed * 10) ] ] ] end to adjustTactics ask-concurrent turtles [if meters >= raceLength [stop]] let surgeList (sort-on [(- runnersHigh)] turtles) ask turtles [if (meters / raceLength) < 0.75 [set currentSurger false]] let surger (item 0 surgeList) ask surger [if (meters / raceLength) < 0.75 [set currentSurger true] if (meters / raceLength) > 0.75 [if any? other turtles with [xcor > [xcor] of myself] [set kick true] if kick = true [ifelse lacticAcid < 100 [set color red set baseSpeed 0.14 set baseSpeed baseSpeed + leadBoost fd (baseSpeed + adjustingSpeed) set lacticAcid (lacticAcid + lacticAccumulationRate + leadBoost) set meters meters + ((baseSpeed + adjustingSpeed) * 10)] [ set baseSpeed 0.14 fd baseSpeed set meters meters + (baseSpeed * 10) ] ] ] ] ask turtles with [currentSurger = false and adjust1 = false] [if (meters / raceLength) > 0.75 [if any? other turtles with [xcor > [xcor] of myself] [set kick true] if kick = true [ifelse lacticAcid < 100 [set baseSpeed 0.14 set baseSpeed baseSpeed + (((100 - lacticAcid) / 100) / (meters / raceLength)) fd (baseSpeed + adjustingSpeed) set lacticAcid (lacticAcid + lacticAccumulationRate + (((100 - lacticAcid) / 100) / (meters / raceLength))) set meters meters + ((baseSpeed + adjustingSpeed) * 10) ] [ set baseSpeed 0.14 fd baseSpeed set meters meters + (baseSpeed * 10) ] ] ] ] ask turtles [if count turtles with [kick = true] > 1 [if color != red [ifelse lacticAcid < 100 [set baseSpeed 0.14 set baseSpeed baseSpeed + (((100 - lacticAcid) / 100) / (meters / raceLength)) fd (baseSpeed + adjustingSpeed) set lacticAcid (lacticAcid + lacticAccumulationRate + (((100 - lacticAcid) / 100) / (meters / raceLength))) set meters meters + ((baseSpeed + adjustingSpeed) * 10) set kick true set adjust1 true ] [ fd baseSpeed set meters meters + (baseSpeed * 10) ] ] ] ] end to leaderboard set finishingList (sort-on [(- finish)] turtles) if (count turtles) = 1 [ if all? turtles with [frontPack = true] [winner = true] [ if min [meters] of turtles with [frontPack = true] >= raceLength [output-print "First place is..." output-print sublist finishingList 0 1 ask item 0 finishingList [set won true if strategy = "aggressive" [set winnerAggressive winnerAggressive + 1] if strategy = "conservative" [set winnerConservative winnerConservative + 1] ] watch item 0 finishingList set haltRace "true" ] ] ] if (count turtles) = 2 [ if all? turtles with [frontPack = true] [winner = true] [ if min [meters] of turtles with [frontPack = true] >= raceLength [output-print "First place and Second place are..." output-print sublist finishingList 0 2 ask item 0 finishingList [set won true if strategy = "aggressive" [set winnerAggressive winnerAggressive + 1] if strategy = "conservative" [set winnerConservative winnerConservative + 1] ] watch item 0 finishingList set haltRace "true" ] ] ] if (count turtles) >= 3 [if count turtles with [status = "finished"] = 3 [ if all? turtles with [frontPack = true] [winner = true] [ if min [meters] of turtles with [frontPack = true] >= raceLength [output-print "First place, Second place, and Third place are..." output-print sublist finishingList 0 3 ask item 0 finishingList [set won true if strategy = "aggressive" [set winnerAggressive winnerAggressive + 1] if strategy = "conservative" [set winnerConservative winnerConservative + 1] ] watch item 0 finishingList set haltRace "true" ] ] ] ] if winner = true [set firstTime firstTime + 1] end @#$#@#$#@ GRAPHICS-WINDOW 11 10 423 243 80 40 2.5 1 10 1 1 1 0 0 0 1 -80 80 -40 40 1 1 1 seconds 30.0 BUTTON 433 10 497 43 Setup setup NIL 1 T OBSERVER NIL S NIL NIL 1 BUTTON 640 10 703 43 Go go T 1 T OBSERVER NIL G NIL NIL 0 MONITOR 433 105 555 150 Number of Runners count runners + count opponents 17 1 11 BUTTON 705 10 782 43 Clear All ca NIL 1 T OBSERVER NIL C NIL NIL 1 OUTPUT 12 255 389 453 11 TEXTBOX 435 73 654 115 *Use the speed slider, above, to slow down the model so you can see what's happening 11 0.0 1 SLIDER 557 105 734 138 numOpponents numOpponents 0 7 7 1 1 NIL HORIZONTAL CHOOSER 432 157 570 202 raceLength raceLength 400 800 1600 2 CHOOSER 575 157 713 202 raceStrategy raceStrategy "aggressive" "conservative" "random" 2 TEXTBOX 24 460 174 488 *View spotlight to follow lead runner 11 0.0 1 TEXTBOX 434 43 634 85 *Remember to press the 'Setup' button after adjusting variables 11 0.0 1 MONITOR 972 645 1134 690 Current Race Distance (yellow) precision [meters] of turtle 0 3 17 1 11 PLOT 686 644 962 794 Yellow Runner (Lactic Acid Accumulation) Time (sec) Lactic Acid % 0.0 10.0 0.0 10.0 true false "" "" PENS "default" 1.0 0 -16777216 true "" "plot [lacticAcid] of turtle 0" SLIDER 610 268 782 301 draftInefficiency draftInefficiency 0 100 100 1 1 % HORIZONTAL SLIDER 615 348 827 381 leadBoost leadBoost 0 1 0.6 .01 1 NIL HORIZONTAL PLOT 685 490 1160 640 Yellow Runner (Speed - meters/second) Time Speed 0.0 10.0 0.0 10.0 true false "" "" PENS "default" 1.0 0 -16777216 true "" "plot ([baseSpeed] of turtle 0 + [adjustingSpeed] of turtle 0) * 10" SLIDER 434 268 606 301 speedVariability speedVariability 0 100 30 1 1 % HORIZONTAL SWITCH 433 205 547 238 Variability? Variability? 0 1 -1000 BUTTON 499 10 638 43 Implement Strategies setupStrategies NIL 1 T OBSERVER NIL I NIL NIL 1 PLOT 10 490 679 870 Current Race Distance Time Distance 0.0 10.0 0.0 5.0 true true "" "" PENS "Runner 0" 1.0 0 -1184463 true "" "plot [meters] of turtle 0" "Opponent 1" 1.0 0 -5987164 true "" "if numOpponents >= 1 [plot [meters] of turtle 1]" "Opponent 2" 1.0 0 -2674135 true "" "if numOpponents >= 2 [plot [meters] of turtle 2]" "Opponent 3" 1.0 0 -8431303 true "" "if numOpponents >= 3 [plot [meters] of turtle 3]" "Opponent 4" 1.0 0 -10899396 true "" "if numOpponents >= 4 [plot [meters] of turtle 4]" "Opponent 5" 1.0 0 -14070903 true "" "if numOpponents >= 5 [plot [meters] of turtle 5]" "Opponent 6" 1.0 0 -10141563 true "" "if numOpponents >= 6 [plot [meters] of turtle 6]" "Opponent 7" 1.0 0 -2064490 true "" "if numOpponents >= 7 [plot [meters] of turtle 7]" "RaceLength" 1.0 0 -16777216 true "" "plot raceLength" SLIDER 433 348 610 381 lacticAccumulationRate lacticAccumulationRate 0 .5 0.4 0.01 1 NIL HORIZONTAL SLIDER 433 432 605 465 conserveEffort conserveEffort 0 100 100 1 1 % HORIZONTAL TEXTBOX 579 141 729 159 *Sets strategy for all racers 11 0.0 1 TEXTBOX 616 223 771 262 *Efficiency of drafting for conservative racers, higher % reduces lactic accumulation 11 0.0 1 TEXTBOX 437 240 628 265 *Adjusts the variability of starting speeds of racers 11 0.0 1 TEXTBOX 433 319 614 345 *Adjusts amount of lactic acid rate racers accumulate over time 11 0.0 1 TEXTBOX 615 304 823 344 *Adjusts the amount of speed bonus given to longest standing leader of race (psychological runner's high) 11 0.0 1 TEXTBOX 434 388 599 431 *Adjusts the amount of effort conservative racers put into race based on % of max speed 11 0.0 1 MONITOR 743 151 866 196 Aggressive Winner? count turtles with [winnerAggressive = 1] 17 1 11 MONITOR 743 105 866 150 Conservative Winner? count turtles with [winnerConservative = 1] 17 1 11 TEXTBOX 744 62 894 104 *Winning Strategy Indicator:\n1 (winner)\n0 (loser) 11 0.0 1 @#$#@#$#@ ## WHAT IS IT? (a general understanding of what the model is trying to show or explain) ## HOW IT WORKS (what rules the agents use to create the overall behavior of the model) ## HOW TO USE IT (how to use the model, including a description of each of the items in the Interface tab) ## THINGS TO NOTICE (suggested things for the user to notice while running the model) ## THINGS TO TRY (suggested things for the user to try to do (move sliders, switches, etc.) with the model) ## EXTENDING THE MODEL (suggested things to add or change in the Code tab to make the model more complicated, detailed, accurate, etc.) ## NETLOGO FEATURES (interesting or unusual features of NetLogo that the model uses, particularly in the Code tab; or where workarounds were needed for missing features) ## RELATED MODELS (models in the NetLogo Models Library and elsewhere which are of related interest) ## CREDITS AND REFERENCES (a reference to the model's URL on the web if it has one, as well as any other necessary credits, citations, and links) @#$#@#$#@ default true 0 Polygon -7500403 true true 150 5 40 250 150 205 260 250 airplane true 0 Polygon -7500403 true true 150 0 135 15 120 60 120 105 15 165 15 195 120 180 135 240 105 270 120 285 150 270 180 285 210 270 165 240 180 180 285 195 285 165 180 105 180 60 165 15 arrow true 0 Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150 box false 0 Polygon -7500403 true true 150 285 285 225 285 75 150 135 Polygon -7500403 true true 150 135 15 75 150 15 285 75 Polygon -7500403 true true 15 75 15 225 150 285 150 135 Line -16777216 false 150 285 150 135 Line -16777216 false 150 135 15 75 Line -16777216 false 150 135 285 75 bug true 0 Circle -7500403 true true 96 182 108 Circle -7500403 true true 110 127 80 Circle -7500403 true true 110 75 80 Line -7500403 true 150 100 80 30 Line -7500403 true 150 100 220 30 butterfly true 0 Polygon -7500403 true true 150 165 209 199 225 225 225 255 195 270 165 255 150 240 Polygon -7500403 true true 150 165 89 198 75 225 75 255 105 270 135 255 150 240 Polygon -7500403 true true 139 148 100 105 55 90 25 90 10 105 10 135 25 180 40 195 85 194 139 163 Polygon -7500403 true true 162 150 200 105 245 90 275 90 290 105 290 135 275 180 260 195 215 195 162 165 Polygon -16777216 true false 150 255 135 225 120 150 135 120 150 105 165 120 180 150 165 225 Circle -16777216 true false 135 90 30 Line -16777216 false 150 105 195 60 Line -16777216 false 150 105 105 60 car false 0 Polygon -7500403 true true 300 180 279 164 261 144 240 135 226 132 213 106 203 84 185 63 159 50 135 50 75 60 0 150 0 165 0 225 300 225 300 180 Circle -16777216 true false 180 180 90 Circle -16777216 true false 30 180 90 Polygon -16777216 true false 162 80 132 78 134 135 209 135 194 105 189 96 180 89 Circle -7500403 true true 47 195 58 Circle -7500403 true true 195 195 58 circle false 0 Circle -7500403 true true 0 0 300 circle 2 false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 cow false 0 Polygon -7500403 true true 200 193 197 249 179 249 177 196 166 187 140 189 93 191 78 179 72 211 49 209 48 181 37 149 25 120 25 89 45 72 103 84 179 75 198 76 252 64 272 81 293 103 285 121 255 121 242 118 224 167 Polygon -7500403 true true 73 210 86 251 62 249 48 208 Polygon -7500403 true true 25 114 16 195 9 204 23 213 25 200 39 123 cylinder false 0 Circle -7500403 true true 0 0 300 dot false 0 Circle -7500403 true true 90 90 120 face happy false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 255 90 239 62 213 47 191 67 179 90 203 109 218 150 225 192 218 210 203 227 181 251 194 236 217 212 240 face neutral false 0 Circle -7500403 true true 8 7 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Rectangle -16777216 true false 60 195 240 225 face sad false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 168 90 184 62 210 47 232 67 244 90 220 109 205 150 198 192 205 210 220 227 242 251 229 236 206 212 183 fish false 0 Polygon -1 true false 44 131 21 87 15 86 0 120 15 150 0 180 13 214 20 212 45 166 Polygon -1 true false 135 195 119 235 95 218 76 210 46 204 60 165 Polygon -1 true false 75 45 83 77 71 103 86 114 166 78 135 60 Polygon -7500403 true true 30 136 151 77 226 81 280 119 292 146 292 160 287 170 270 195 195 210 151 212 30 166 Circle -16777216 true false 215 106 30 flag false 0 Rectangle -7500403 true true 60 15 75 300 Polygon -7500403 true true 90 150 270 90 90 30 Line -7500403 true 75 135 90 135 Line -7500403 true 75 45 90 45 flower false 0 Polygon -10899396 true false 135 120 165 165 180 210 180 240 150 300 165 300 195 240 195 195 165 135 Circle -7500403 true true 85 132 38 Circle -7500403 true true 130 147 38 Circle -7500403 true true 192 85 38 Circle -7500403 true true 85 40 38 Circle -7500403 true true 177 40 38 Circle -7500403 true true 177 132 38 Circle -7500403 true true 70 85 38 Circle -7500403 true true 130 25 38 Circle -7500403 true true 96 51 108 Circle -16777216 true false 113 68 74 Polygon -10899396 true false 189 233 219 188 249 173 279 188 234 218 Polygon -10899396 true false 180 255 150 210 105 210 75 240 135 240 house false 0 Rectangle -7500403 true true 45 120 255 285 Rectangle -16777216 true false 120 210 180 285 Polygon -7500403 true true 15 120 150 15 285 120 Line -16777216 false 30 120 270 120 leaf false 0 Polygon -7500403 true true 150 210 135 195 120 210 60 210 30 195 60 180 60 165 15 135 30 120 15 105 40 104 45 90 60 90 90 105 105 120 120 120 105 60 120 60 135 30 150 15 165 30 180 60 195 60 180 120 195 120 210 105 240 90 255 90 263 104 285 105 270 120 285 135 240 165 240 180 270 195 240 210 180 210 165 195 Polygon -7500403 true true 135 195 135 240 120 255 105 255 105 285 135 285 165 240 165 195 line true 0 Line -7500403 true 150 0 150 300 line half true 0 Line -7500403 true 150 0 150 150 pentagon false 0 Polygon -7500403 true true 150 15 15 120 60 285 240 285 285 120 person false 0 Circle -7500403 true true 110 5 80 Polygon -7500403 true true 105 90 120 195 90 285 105 300 135 300 150 225 165 300 195 300 210 285 180 195 195 90 Rectangle -7500403 true true 127 79 172 94 Polygon -7500403 true true 195 90 240 150 225 180 165 105 Polygon -7500403 true true 105 90 60 150 75 180 135 105 plant false 0 Rectangle -7500403 true true 135 90 165 300 Polygon -7500403 true true 135 255 90 210 45 195 75 255 135 285 Polygon -7500403 true true 165 255 210 210 255 195 225 255 165 285 Polygon -7500403 true true 135 180 90 135 45 120 75 180 135 210 Polygon -7500403 true true 165 180 165 210 225 180 255 120 210 135 Polygon -7500403 true true 135 105 90 60 45 45 75 105 135 135 Polygon -7500403 true true 165 105 165 135 225 105 255 45 210 60 Polygon -7500403 true true 135 90 120 45 150 15 180 45 165 90 sheep false 15 Circle -1 true true 203 65 88 Circle -1 true true 70 65 162 Circle -1 true true 150 105 120 Polygon -7500403 true false 218 120 240 165 255 165 278 120 Circle -7500403 true false 214 72 67 Rectangle -1 true true 164 223 179 298 Polygon -1 true true 45 285 30 285 30 240 15 195 45 210 Circle -1 true true 3 83 150 Rectangle -1 true true 65 221 80 296 Polygon -1 true true 195 285 210 285 210 240 240 210 195 210 Polygon -7500403 true false 276 85 285 105 302 99 294 83 Polygon -7500403 true false 219 85 210 105 193 99 201 83 square false 0 Rectangle -7500403 true true 30 30 270 270 square 2 false 0 Rectangle -7500403 true true 30 30 270 270 Rectangle -16777216 true false 60 60 240 240 star false 0 Polygon -7500403 true true 151 1 185 108 298 108 207 175 242 282 151 216 59 282 94 175 3 108 116 108 target false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 Circle -7500403 true true 60 60 180 Circle -16777216 true false 90 90 120 Circle -7500403 true true 120 120 60 trackline true 0 Line -7500403 true 150 150 150 135 tree false 0 Circle -7500403 true true 118 3 94 Rectangle -6459832 true false 120 195 180 300 Circle -7500403 true true 65 21 108 Circle -7500403 true true 116 41 127 Circle -7500403 true true 45 90 120 Circle -7500403 true true 104 74 152 triangle false 0 Polygon -7500403 true true 150 30 15 255 285 255 triangle 2 false 0 Polygon -7500403 true true 150 30 15 255 285 255 Polygon -16777216 true false 151 99 225 223 75 224 truck false 0 Rectangle -7500403 true true 4 45 195 187 Polygon -7500403 true true 296 193 296 150 259 134 244 104 208 104 207 194 Rectangle -1 true false 195 60 195 105 Polygon -16777216 true false 238 112 252 141 219 141 218 112 Circle -16777216 true false 234 174 42 Rectangle -7500403 true true 181 185 214 194 Circle -16777216 true false 144 174 42 Circle -16777216 true false 24 174 42 Circle -7500403 false true 24 174 42 Circle -7500403 false true 144 174 42 Circle -7500403 false true 234 174 42 turtle true 0 Polygon -10899396 true false 215 204 240 233 246 254 228 266 215 252 193 210 Polygon -10899396 true false 195 90 225 75 245 75 260 89 269 108 261 124 240 105 225 105 210 105 Polygon -10899396 true false 105 90 75 75 55 75 40 89 31 108 39 124 60 105 75 105 90 105 Polygon -10899396 true false 132 85 134 64 107 51 108 17 150 2 192 18 192 52 169 65 172 87 Polygon -10899396 true false 85 204 60 233 54 254 72 266 85 252 107 210 Polygon -7500403 true true 119 75 179 75 209 101 224 135 220 225 175 261 128 261 81 224 74 135 88 99 wheel false 0 Circle -7500403 true true 3 3 294 Circle -16777216 true false 30 30 240 Line -7500403 true 150 285 150 15 Line -7500403 true 15 150 285 150 Circle -7500403 true true 120 120 60 Line -7500403 true 216 40 79 269 Line -7500403 true 40 84 269 221 Line -7500403 true 40 216 269 79 Line -7500403 true 84 40 221 269 wolf false 0 Polygon -16777216 true false 253 133 245 131 245 133 Polygon -7500403 true true 2 194 13 197 30 191 38 193 38 205 20 226 20 257 27 265 38 266 40 260 31 253 31 230 60 206 68 198 75 209 66 228 65 243 82 261 84 268 100 267 103 261 77 239 79 231 100 207 98 196 119 201 143 202 160 195 166 210 172 213 173 238 167 251 160 248 154 265 169 264 178 247 186 240 198 260 200 271 217 271 219 262 207 258 195 230 192 198 210 184 227 164 242 144 259 145 284 151 277 141 293 140 299 134 297 127 273 119 270 105 Polygon -7500403 true true -1 195 14 180 36 166 40 153 53 140 82 131 134 133 159 126 188 115 227 108 236 102 238 98 268 86 269 92 281 87 269 103 269 113 x false 0 Polygon -7500403 true true 270 75 225 30 30 225 75 270 Polygon -7500403 true true 30 75 75 30 270 225 225 270 @#$#@#$#@ NetLogo 5.0.3 @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ setup setupStrategies go count turtles with [winnerConservative = 1] count turtles with [winnerAggressive = 1] @#$#@#$#@ @#$#@#$#@ default 0.0 -0.2 1 1.0 0.0 0.0 1 1.0 0.0 0.2 1 1.0 0.0 link direction true 0 Line -7500403 true 150 150 90 180 Line -7500403 true 150 150 210 180 track 0.0 -0.2 0 0.0 1.0 0.0 1 1.0 0.0 0.2 0 0.0 1.0 link direction true 0 Line -7500403 true 150 150 150 210 @#$#@#$#@ 0 @#$#@#$#@