From 4512b9b44465c4f77bac782832d98f83bbbae0bd Mon Sep 17 00:00:00 2001 From: "Jomi F. Hubner" Date: Tue, 6 Dec 2016 14:40:02 -0200 Subject: [PATCH] rename c4jason to jaca --- doc/tutorials/hello-bdi/code/Calendar.java | 20 +- doc/tutorials/hello-bdi/code/bdi_hw.mas2j | 11 +- doc/tutorials/hello-bdi/code/bob.asl | 3 +- doc/tutorials/hello-bdi/readme.adoc | 19 +- examples/gold-miners-II/mas.log.1 | 2912 ----------------- examples/gold-miners-II/mas.log.1.lck | 0 examples/wumpus/aux.asl | 6 +- .../CentralisedMASLauncherAnt.java | 2 +- src/main/java/jason/stdlib/include.java | 2 +- 9 files changed, 32 insertions(+), 2943 deletions(-) delete mode 100644 examples/gold-miners-II/mas.log.1 delete mode 100644 examples/gold-miners-II/mas.log.1.lck diff --git a/doc/tutorials/hello-bdi/code/Calendar.java b/doc/tutorials/hello-bdi/code/Calendar.java index 6727a0df..cccbc1e0 100644 --- a/doc/tutorials/hello-bdi/code/Calendar.java +++ b/doc/tutorials/hello-bdi/code/Calendar.java @@ -15,7 +15,7 @@ import cartago.tools.GUIArtifact; public class Calendar extends GUIArtifact { - Term[] days = { + Term[] days = { ASSyntax.createAtom("sunday"), ASSyntax.createAtom("monday"), ASSyntax.createAtom("tuesday"), @@ -24,18 +24,18 @@ public class Calendar extends GUIArtifact { ASSyntax.createAtom("friday"), ASSyntax.createAtom("saturday") }; - - + + public void setup() { defineObsProperty("today", days[0]); initGUI(); } JSlider s = new JSlider(); - + void initGUI() { JFrame f = new JFrame("Calendar"); - + s.setMinimum(0); s.setMaximum(6); s.setPaintTicks(true); @@ -51,17 +51,19 @@ void initGUI() { lbs.put(6, new JLabel("S")); s.setLabelTable(lbs); linkChangeEventToOp(s, "updateDay"); - + f.add(s); f.pack(); f.setVisible(true); } - + + /* protected void linkChangeEventToOp(JSlider source, String opName){ insertEventToOp(source,"stateChanged",opName); source.addChangeListener((ChangeListener) getEventListenerInstance()); } - + */ + @INTERNAL_OPERATION void updateDay(ChangeEvent ev) { try { ObsProperty prop = getObsProperty("today"); @@ -69,5 +71,5 @@ protected void linkChangeEventToOp(JSlider source, String opName){ } catch (Exception e2) { e2.printStackTrace(); } - } + } } diff --git a/doc/tutorials/hello-bdi/code/bdi_hw.mas2j b/doc/tutorials/hello-bdi/code/bdi_hw.mas2j index c46f87d7..e26abefb 100644 --- a/doc/tutorials/hello-bdi/code/bdi_hw.mas2j +++ b/doc/tutorials/hello-bdi/code/bdi_hw.mas2j @@ -1,11 +1,10 @@ /* Jason Project */ MAS bdi_hw { - environment: c4jason.CartagoEnvironment - - agents: - bob agentArchClass c4jason.CAgentArch; - alice agentArchClass c4jason.CAgentArch; + environment: jaca.CartagoEnvironment -} + agents: + bob agentArchClass jaca.CAgentArch; + alice agentArchClass jaca.CAgentArch; +} diff --git a/doc/tutorials/hello-bdi/code/bob.asl b/doc/tutorials/hello-bdi/code/bob.asl index f9c9ce0f..ec1c0b83 100644 --- a/doc/tutorials/hello-bdi/code/bob.asl +++ b/doc/tutorials/hello-bdi/code/bob.asl @@ -12,7 +12,7 @@ sincere(alice). +!say(X) : today(friday) <- .print(X,"!!!!!"); .wait(500); !say(X). +!say(X) : not today(monday) <- .print(X); .wait(math.random(400)+100); !say(X). -+!say(X) <- !say(X). ++!say(X) <- !say(X). +today(wednesday) <- .print("**** Let's slow down.... **** (only 2 intentions)"); !enter_lazy_mode. +today(friday) <- .print("**** Let's finish the work!"); !resume_all. @@ -31,4 +31,3 @@ sincere(alice). <- .resume(say(_)); !resume_all. +!resume_all. - diff --git a/doc/tutorials/hello-bdi/readme.adoc b/doc/tutorials/hello-bdi/readme.adoc index 8a13eaa9..a2f6a052 100644 --- a/doc/tutorials/hello-bdi/readme.adoc +++ b/doc/tutorials/hello-bdi/readme.adoc @@ -233,11 +233,11 @@ a| MAS bdi_hw { // CArtAgO environment - environment: c4jason.CartagoEnvironment + environment: jaca.CartagoEnvironment // Agent architecture for CArtAgO agents: - bob agentArchClass c4jason.CAgentArch; + bob agentArchClass jaca.CAgentArch; } -------------------------- @@ -292,7 +292,7 @@ with failure, since the agent has a desire without a suitable plan. The following program for Bob includes alternative plans for the events `+happy(H)` and `+!say(X)`. ----------------------------------------------------------------------------------------- +----- sincere(alice). !create_calendar. @@ -303,8 +303,8 @@ sincere(alice). +!say(X) : today(friday) <- .print(X,"!!!!!"); .wait(math.random(400)+100); !say(X). +!say(X) : not today(monday) <- .print(X); .wait(math.random(400)+100); !say(X). -+!say(X) <- !say(X). ----------------------------------------------------------------------------------------- ++!say(X) <- !say(X). +----- For each event, *one* plan is selected according to the context: the first plan with a context that holds is selected to create the intention @@ -316,9 +316,9 @@ of `happy(H)` is sincere is true if the value of `H` is the name of the agent executing that internal action). The second plan is used otherwise. The first plan for `+!say(X)` is used in days other than Monday and the second on Fridays. -(Notice that there is a plan for Mondays that does not actually say anything +(Notice that there is a plan for Mondays that does not actually say anything but just keeps the intention alive. Without it Bob would find no plan for -`say(X)` on Monday and the intention for `say(X)` would not be re-added. Bob +`say(X)` on Monday and the intention for `say(X)` would not be re-added. Bob would have to remain mute ever after.) Instead of using REPL, we will add a new agent, called Alice, to run @@ -404,7 +404,7 @@ be suspended. 2. On Fridays, suspended intentions are resumed. 3. On Saturdays, all intentions are dropped. ------------------------------------------------------------------------------------------------- +----- sincere(alice). !create_calendar. @@ -419,6 +419,7 @@ sincere(alice). +!say(X) : today(friday) <- .print(X,"!!!!!"); .wait(500); !say(X). +!say(X) : not today(monday) <- .print(X); .wait(math.random(400)+100); !say(X). ++!say(X) <- !say(X). /**** the following is NEW ****/ @@ -438,7 +439,7 @@ sincere(alice). <- .resume(say(_)); !resume_all. +!resume_all. ------------------------------------------------------------------------------------------------- +----- (You can refer to the http://jason.sourceforge.net/api/jason/stdlib/package-summary.html#package.description[Jason diff --git a/examples/gold-miners-II/mas.log.1 b/examples/gold-miners-II/mas.log.1 deleted file mode 100644 index 41adb0c0..00000000 --- a/examples/gold-miners-II/mas.log.1 +++ /dev/null @@ -1,2912 +0,0 @@ -[leader] Defining quadrants for simulation 11 : 51x51 -[leader] Miner miner4 is in the depot quadrant. -[miner2] Starting simulation 11 -[miner2] I've got my quadrant, changing search gold strategy. -[miner2] All golds=[], evaluation=[] -[miner2] All golds=[], evaluation=[] -[miner2] New goal is find gold: quadrant -[miner2] New goal is find gold: quadrant -[miner1] Gold perceived: gold(5,17) -[miner1] All golds=[gold(5,17)], evaluation=[d(2,gold(5,17),not_committed)] -[miner1] Gold options are [d(2,gold(5,17),not_committed)]. Next gold is gold(5,17) -[miner1] Gold perceived: gold(6,19) -[miner1] All golds=[gold(6,19),gold(5,17)], evaluation=[d(1,gold(6,19),not_committed),d(2,gold(5,17),not_committed)] -[miner1] Gold options are [d(1,gold(6,19),not_committed),d(2,gold(5,17),not_committed)]. Next gold is gold(6,19) -[miner1] Gold perceived: gold(7,19) -[miner1] All golds=[gold(7,19),gold(6,19),gold(5,17)], evaluation=[d(2,gold(7,19),not_committed),d(1,gold(6,19),not_committed),d(2,gold(5,17),not_committed)] -[miner1] Gold options are [d(2,gold(7,19),not_committed),d(1,gold(6,19),not_committed),d(2,gold(5,17),not_committed)]. Next gold is gold(6,19) -[miner1] Starting simulation 11 -[miner6] Starting simulation 11 -[miner1] I've got my quadrant, changing search gold strategy. -[miner6] All golds=[], evaluation=[] -[miner6] New goal is find gold: near_unvisited -[miner5] Starting simulation 11 -[miner5] All golds=[], evaluation=[] -[miner1] Handling gold(6,19) now. -[miner5] New goal is find gold: near_unvisited -[miner1] All golds=[gold(7,19),gold(6,19),gold(5,17)], evaluation=[d(2,gold(7,19),not_committed),d(1,gold(6,19),not_committed),d(2,gold(5,17),not_committed)] -[miner4] Starting simulation 11 -[miner1] Gold options are [d(2,gold(7,19),not_committed),d(1,gold(6,19),not_committed),d(2,gold(5,17),not_committed)]. Next gold is gold(6,19) -[miner3] Starting simulation 11 -[miner4] All golds=[], evaluation=[] -[miner3] I've got my quadrant, changing search gold strategy. -[miner3] All golds=[], evaluation=[] -[miner4] New goal is find gold: near_unvisited -[miner3] All golds=[], evaluation=[] -[leader] Defining quadrants for simulation 11 : 51x51 -[miner3] New goal is find gold: quadrant -[miner3] New goal is find gold: quadrant -[miner1] All golds=[gold(7,19),gold(6,19),gold(5,17)], evaluation=[d(2,gold(7,19),not_committed),d(1,gold(6,19),not_committed),d(2,gold(5,17),not_committed)] -[miner1] Gold options are [d(2,gold(7,19),not_committed),d(1,gold(6,19),not_committed),d(2,gold(5,17),not_committed)]. Next gold is gold(6,19) -[leader] Miner miner4 is in the depot quadrant. -[miner6] All golds=[], evaluation=[] -[miner6] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 1 finished in 24 ms, mean is 24. -[miner1] Picked gold(6,19), I have 1 pieces of gold -[miner1] All golds=[gold(7,19),gold(5,17)], evaluation=[d(1,gold(7,19),not_committed),d(3,gold(5,17),not_committed)] -[miner1] Gold options are [d(1,gold(7,19),not_committed),d(3,gold(5,17),not_committed)]. Next gold is gold(7,19) -[miner1] Handling gold(7,19) now. -[MiningEnvironment] Cycle 2 finished in 30 ms, mean is 27. -[MiningEnvironment] Cycle 3 finished in 23 ms, mean is 25. -[dummy1] picked gold! -[miner1] Gold perceived: gold(8,18) -[miner1] All golds=[gold(8,18),gold(7,19),gold(5,17)], evaluation=[d(2,gold(8,18),not_committed),d(0,gold(7,19),in_my_place),d(4,gold(5,17),not_committed)] -[miner1] Gold options are [d(2,gold(8,18),not_committed),d(0,gold(7,19),in_my_place),d(4,gold(5,17),not_committed)]. Next gold is gold(7,19) -[MiningEnvironment] Cycle 4 finished in 17 ms, mean is 23. -[miner1] Picked gold(7,19), I have 2 pieces of gold -[miner1] All golds=[gold(8,18),gold(5,17)], evaluation=[d(2,gold(8,18),not_committed),d(5,gold(5,17),not_committed)] -[miner1] Gold options are [d(2,gold(8,18),not_committed),d(5,gold(5,17),not_committed)]. Next gold is gold(8,18) -[miner1] Handling gold(8,18) now. -[MiningEnvironment] Cycle 5 finished in 19 ms, mean is 22. -[dummy2] picked gold! -[dummy1] picked gold! -[MiningEnvironment] Cycle 6 finished in 13 ms, mean is 21. -[dummy2] picked gold! -[miner1] Picked gold(8,18), I have 2 pieces of gold -[miner1] All golds=[gold(5,17)], evaluation=[d(5,gold(5,17),not_committed)] -[miner1] Gold options are [d(5,gold(5,17),not_committed)]. Next gold is gold(5,17) -[miner1] Handling gold(5,17) now. -[MiningEnvironment] Cycle 7 finished in 22 ms, mean is 21. -[miner1] Gold perceived: gold(7,16) -[miner1] All golds=[gold(7,16),gold(5,17)], evaluation=[d(2,gold(7,16),not_committed),d(4,gold(5,17),not_committed)] -[miner1] Gold options are [d(2,gold(7,16),not_committed),d(4,gold(5,17),not_committed)]. Next gold is gold(7,16) -[miner1] Gold perceived: gold(8,16) -[miner1] All golds=[gold(8,16),gold(7,16),gold(5,17)], evaluation=[d(1,gold(8,16),not_committed),d(2,gold(7,16),not_committed),d(4,gold(5,17),not_committed)] -[miner1] Gold options are [d(1,gold(8,16),not_committed),d(2,gold(7,16),not_committed),d(4,gold(5,17),not_committed)]. Next gold is gold(8,16) -[miner1] Gold perceived: gold(8,18) -[miner1] All golds=[gold(8,18),gold(8,16),gold(7,16),gold(5,17)], evaluation=[d(1,gold(8,18),not_committed),d(1,gold(8,16),not_committed),d(2,gold(7,16),not_committed),d(4,gold(5,17),not_committed)] -[miner1] Gold options are [d(1,gold(8,18),not_committed),d(1,gold(8,16),not_committed),d(2,gold(7,16),not_committed),d(4,gold(5,17),not_committed)]. Next gold is gold(8,16) -[miner1] Gold perceived: gold(9,16) -[miner1] All golds=[gold(9,16),gold(8,18),gold(8,16),gold(7,16),gold(5,17)], evaluation=[d(2,gold(9,16),not_committed),d(1,gold(8,18),not_committed),d(1,gold(8,16),not_committed),d(2,gold(7,16),not_committed),d(4,gold(5,17),not_committed)] -[miner1] Gold options are [d(2,gold(9,16),not_committed),d(1,gold(8,18),not_committed),d(1,gold(8,16),not_committed),d(2,gold(7,16),not_committed),d(4,gold(5,17),not_committed)]. Next gold is gold(8,16) -[miner1] Handling gold(8,16) now. -[MiningEnvironment] Cycle 8 finished in 57 ms, mean is 25. -[MiningEnvironment] Cycle 9 finished in 9 ms, mean is 23. -[miner5] Gold perceived: gold(28,4) -[miner5] All golds=[gold(28,4)], evaluation=[d(2,gold(28,4),not_committed)] -[miner5] Gold options are [d(2,gold(28,4),not_committed)]. Next gold is gold(28,4) -[miner5] Dropping search_gold desires and intentions to handle gold -[miner5] Handling gold(28,4) now. -[MiningEnvironment] Cycle 10 finished in 11 ms, mean is 22. -[miner5] Gold perceived: gold(29,4) -[miner5] All golds=[gold(29,4),gold(28,4)], evaluation=[d(2,gold(29,4),not_committed),d(1,gold(28,4),not_committed)] -[miner5] Gold options are [d(2,gold(29,4),not_committed),d(1,gold(28,4),not_committed)]. Next gold is gold(28,4) -[miner1] Gold perceived: gold(7,15) -[miner1] All golds=[gold(7,15),gold(9,16),gold(8,18),gold(8,16),gold(7,16),gold(5,17)], evaluation=[d(2,gold(7,15),not_committed),d(1,gold(9,16),not_committed),d(2,gold(8,18),not_committed),d(0,gold(8,16),in_my_place),d(1,gold(7,16),not_committed),d(5,gold(5,17),not_committed)] -[miner1] Gold options are [d(2,gold(7,15),not_committed),d(1,gold(9,16),not_committed),d(2,gold(8,18),not_committed),d(0,gold(8,16),in_my_place),d(1,gold(7,16),not_committed),d(5,gold(5,17),not_committed)]. Next gold is gold(8,16) -[MiningEnvironment] Cycle 11 finished in 20 ms, mean is 22. -[miner1] Picked gold(8,16), I have 3 pieces of gold -[miner5] Gold perceived: gold(29,5) -[miner5] All golds=[gold(29,5),gold(29,4),gold(28,4)], evaluation=[d(2,gold(29,5),not_committed),d(1,gold(29,4),not_committed),d(0,gold(28,4),in_my_place)] -[miner1] Going to depot to deliver 3 golds. -[miner5] Gold options are [d(2,gold(29,5),not_committed),d(1,gold(29,4),not_committed),d(0,gold(28,4),in_my_place)]. Next gold is gold(28,4) -[miner1] Announcing gold(7,15), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] Announcing gold(9,16), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] Announcing gold(8,18), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] Announcing gold(7,16), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] Announcing gold(5,17), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 12 finished in 15 ms, mean is 21. -[miner5] Picked gold(28,4), I have 1 pieces of gold -[miner5] All golds=[gold(29,5),gold(29,4)], evaluation=[d(2,gold(29,5),not_committed),d(1,gold(29,4),not_committed)] -[miner5] Gold options are [d(2,gold(29,5),not_committed),d(1,gold(29,4),not_committed)]. Next gold is gold(29,4) -[miner5] Handling gold(29,4) now. -[MiningEnvironment] Cycle 13 finished in 93 ms, mean is 27. -[miner5] Gold perceived: gold(30,5) -[miner5] All golds=[gold(30,5),gold(29,5),gold(29,4)], evaluation=[d(2,gold(30,5),not_committed),d(1,gold(29,5),not_committed),d(0,gold(29,4),in_my_place)] -[miner5] Gold options are [d(2,gold(30,5),not_committed),d(1,gold(29,5),not_committed),d(0,gold(29,4),in_my_place)]. Next gold is gold(29,4) -[MiningEnvironment] Cycle 14 finished in 8 ms, mean is 25. -[miner5] Picked gold(29,4), I have 2 pieces of gold -[miner5] All golds=[gold(30,5),gold(29,5)], evaluation=[d(2,gold(30,5),not_committed),d(1,gold(29,5),not_committed)] -[dummy1] picked gold! -[miner5] Gold options are [d(2,gold(30,5),not_committed),d(1,gold(29,5),not_committed)]. Next gold is gold(29,5) -[miner5] Handling gold(29,5) now. -[MiningEnvironment] Cycle 15 finished in 11 ms, mean is 24. -[miner5] Picked gold(29,5), I have 2 pieces of gold -[miner5] All golds=[gold(30,5)], evaluation=[d(1,gold(30,5),not_committed)] -[dummy1] picked gold! -[miner1] Announcing gold(10,17) to others -[miner5] Gold options are [d(1,gold(30,5),not_committed)]. Next gold is gold(30,5) -[miner5] Handling gold(30,5) now. -[miner1] Announcing gold(11,15) to others -[MiningEnvironment] Cycle 16 finished in 43 ms, mean is 25. -[dummy1] picked gold! -[MiningEnvironment] Cycle 17 finished in 7 ms, mean is 24. -[miner5] Picked gold(30,5), I have 3 pieces of gold -[dummy1] picked gold! -[miner5] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 18 finished in 10 ms, mean is 24. -[miner5] Announcing gold(30,7) to others -[dummy2] picked gold! -[MiningEnvironment] Cycle 19 finished in 32 ms, mean is 24. -[MiningEnvironment] Cycle 20 finished in 7 ms, mean is 23. -[dummy5] picked gold! -[dummy3] picked gold! -[miner1] Announcing gold(12,13) to others -[MiningEnvironment] Cycle 21 finished in 21 ms, mean is 23. -[dummy5] picked gold! -[MiningEnvironment] Cycle 22 finished in 9 ms, mean is 22. -[MiningEnvironment] Cycle 23 finished in 8 ms, mean is 22. -[dummy3] picked gold! -[MiningEnvironment] Cycle 24 finished in 7 ms, mean is 21. -[MiningEnvironment] Cycle 25 finished in 6 ms, mean is 20. -[MiningEnvironment] Cycle 26 finished in 6 ms, mean is 20. -[dummy5] picked gold! -[dummy3] picked gold! -[MiningEnvironment] Cycle 27 finished in 7 ms, mean is 19. -[MiningEnvironment] Cycle 28 finished in 13 ms, mean is 19. -[MiningEnvironment] Cycle 29 finished in 9 ms, mean is 19. -[dummy5] picked gold! -[MiningEnvironment] Cycle 30 finished in 7 ms, mean is 18. -[MiningEnvironment] Cycle 31 finished in 10 ms, mean is 18. -[MiningEnvironment] Cycle 32 finished in 8 ms, mean is 18. -[MiningEnvironment] Cycle 33 finished in 9 ms, mean is 17. -[dummy2] picked gold! -[MiningEnvironment] Cycle 34 finished in 6 ms, mean is 17. -[MiningEnvironment] Cycle 35 finished in 9 ms, mean is 17. -[MiningEnvironment] Cycle 36 finished in 24 ms, mean is 17. -[MiningEnvironment] Cycle 37 finished in 6 ms, mean is 17. -[MiningEnvironment] Cycle 38 finished in 7 ms, mean is 16. -[MiningEnvironment] Cycle 39 finished in 5 ms, mean is 16. -[MiningEnvironment] Cycle 40 finished in 6 ms, mean is 16. -[MiningEnvironment] Cycle 41 finished in 7 ms, mean is 16. -[dummy4] picked gold! -[MiningEnvironment] Cycle 42 finished in 7 ms, mean is 15. -[MiningEnvironment] Cycle 43 finished in 4 ms, mean is 15. -[dummy4] picked gold! -[MiningEnvironment] Cycle 44 finished in 8 ms, mean is 15. -[MiningEnvironment] Cycle 45 finished in 5 ms, mean is 15. -[MiningEnvironment] Cycle 46 finished in 5 ms, mean is 15. -[miner4] All golds=[], evaluation=[] -[miner4] New goal is find gold: near_unvisited -[miner2] Gold perceived: gold(42,18) -[miner2] All golds=[gold(42,18),gold(12,13),gold(30,7),gold(11,15),gold(10,17),gold(5,17),gold(7,16),gold(8,18),gold(9,16),gold(7,15)], evaluation=[d(1,gold(42,18),not_committed),d(39,gold(12,13),not_committed),d(26,gold(30,7),not_committed),d(40,gold(11,15),not_committed),d(37,gold(10,17),not_committed),d(41,gold(7,16),not_committed),d(38,gold(8,18),not_committed),d(39,gold(9,16),not_committed),d(42,gold(7,15),not_committed)] -[miner2] Gold options are [d(1,gold(42,18),not_committed),d(39,gold(12,13),not_committed),d(26,gold(30,7),not_committed),d(40,gold(11,15),not_committed),d(37,gold(10,17),not_committed),d(41,gold(7,16),not_committed),d(38,gold(8,18),not_committed),d(39,gold(9,16),not_committed),d(42,gold(7,15),not_committed)]. Next gold is gold(42,18) -[miner2] Dropping around(_,_) desires and intentions to handle gold -[miner2] Handling gold(42,18) now. -[MiningEnvironment] Cycle 47 finished in 18 ms, mean is 15. -[miner4] Gold perceived: gold(5,17) -[miner4] All golds=[gold(5,17)], evaluation=[d(2,gold(5,17),not_committed)] -[miner4] Gold options are [d(2,gold(5,17),not_committed)]. Next gold is gold(5,17) -[miner2] Picked gold(42,18), I have 0 pieces of gold -[miner4] Dropping search_gold desires and intentions to handle gold -[miner4] Handling gold(5,17) now. -[miner2] All golds=[gold(12,13),gold(30,7),gold(11,15),gold(10,17),gold(5,17),gold(7,16),gold(8,18),gold(9,16),gold(7,15)], evaluation=[d(38,gold(12,13),not_committed),d(25,gold(30,7),not_committed),d(39,gold(11,15),not_committed),d(36,gold(10,17),not_committed),d(40,gold(7,16),not_committed),d(37,gold(8,18),not_committed),d(38,gold(9,16),not_committed),d(41,gold(7,15),not_committed)] -[miner2] Gold options are [d(38,gold(12,13),not_committed),d(25,gold(30,7),not_committed),d(39,gold(11,15),not_committed),d(36,gold(10,17),not_committed),d(40,gold(7,16),not_committed),d(37,gold(8,18),not_committed),d(38,gold(9,16),not_committed),d(41,gold(7,15),not_committed)]. Next gold is gold(30,7) -[miner2] Handling gold(30,7) now. -[MiningEnvironment] Cycle 48 finished in 15 ms, mean is 15. -[miner2] Gold perceived: gold(42,18) -[dummy4] picked gold! -[miner2] All golds=[gold(42,18),gold(12,13),gold(30,7),gold(11,15),gold(10,17),gold(5,17),gold(7,16),gold(8,18),gold(9,16),gold(7,15)], evaluation=[d(1,gold(42,18),not_committed),d(37,gold(12,13),not_committed),d(24,gold(30,7),not_committed),d(38,gold(11,15),not_committed),d(37,gold(10,17),not_committed),d(41,gold(7,16),not_committed),d(38,gold(8,18),not_committed),d(39,gold(9,16),not_committed),d(42,gold(7,15),not_committed)] -[miner2] Gold options are [d(1,gold(42,18),not_committed),d(37,gold(12,13),not_committed),d(24,gold(30,7),not_committed),d(38,gold(11,15),not_committed),d(37,gold(10,17),not_committed),d(41,gold(7,16),not_committed),d(38,gold(8,18),not_committed),d(39,gold(9,16),not_committed),d(42,gold(7,15),not_committed)]. Next gold is gold(42,18) -[miner2] Gold perceived: gold(43,16) -[miner2] All golds=[gold(43,16),gold(42,18),gold(12,13),gold(30,7),gold(11,15),gold(10,17),gold(5,17),gold(7,16),gold(8,18),gold(9,16),gold(7,15)], evaluation=[d(2,gold(43,16),not_committed),d(1,gold(42,18),not_committed),d(37,gold(12,13),not_committed),d(24,gold(30,7),not_committed),d(38,gold(11,15),not_committed),d(37,gold(10,17),not_committed),d(41,gold(7,16),not_committed),d(38,gold(8,18),not_committed),d(39,gold(9,16),not_committed),d(42,gold(7,15),not_committed)] -[miner2] Gold options are [d(2,gold(43,16),not_committed),d(1,gold(42,18),not_committed),d(37,gold(12,13),not_committed),d(24,gold(30,7),not_committed),d(38,gold(11,15),not_committed),d(37,gold(10,17),not_committed),d(41,gold(7,16),not_committed),d(38,gold(8,18),not_committed),d(39,gold(9,16),not_committed),d(42,gold(7,15),not_committed)]. Next gold is gold(42,18) -[miner2] Handling gold(42,18) now. -[MiningEnvironment] Cycle 49 finished in 28 ms, mean is 15. -[MiningEnvironment] Cycle 50 finished in 6 ms, mean is 15. -[miner4] Picked gold(5,17), I have 1 pieces of gold -[miner4] All golds=[], evaluation=[] -[miner4] Going to depot to deliver 1 golds. -[miner2] Picked gold(42,18), I have 1 pieces of gold -[miner2] All golds=[gold(43,16),gold(12,13),gold(30,7),gold(11,15),gold(10,17),gold(7,16),gold(8,18),gold(9,16),gold(7,15)], evaluation=[d(3,gold(43,16),not_committed),d(43,gold(12,13),not_committed),d(28,gold(30,7),not_committed),d(44,gold(11,15),not_committed),d(40,gold(10,17),not_committed),d(45,gold(7,16),not_committed),d(41,gold(8,18),not_committed),d(43,gold(9,16),not_committed),d(46,gold(7,15),not_committed)] -[miner2] Gold options are [d(3,gold(43,16),not_committed),d(43,gold(12,13),not_committed),d(28,gold(30,7),not_committed),d(44,gold(11,15),not_committed),d(40,gold(10,17),not_committed),d(45,gold(7,16),not_committed),d(41,gold(8,18),not_committed),d(43,gold(9,16),not_committed),d(46,gold(7,15),not_committed)]. Next gold is gold(43,16) -[miner2] Handling gold(43,16) now. -[MiningEnvironment] Cycle 51 finished in 50 ms, mean is 15. -[miner2] Gold perceived: gold(44,17) -[miner2] All golds=[gold(44,17),gold(43,16),gold(12,13),gold(30,7),gold(11,15),gold(10,17),gold(7,16),gold(8,18),gold(9,16),gold(7,15)], evaluation=[d(2,gold(44,17),not_committed),d(2,gold(43,16),not_committed),d(44,gold(12,13),not_committed),d(29,gold(30,7),not_committed),d(45,gold(11,15),not_committed),d(41,gold(10,17),not_committed),d(46,gold(7,16),not_committed),d(43,gold(8,18),not_committed),d(44,gold(9,16),not_committed),d(48,gold(7,15),not_committed)] -[miner2] Gold options are [d(2,gold(44,17),not_committed),d(2,gold(43,16),not_committed),d(44,gold(12,13),not_committed),d(29,gold(30,7),not_committed),d(45,gold(11,15),not_committed),d(41,gold(10,17),not_committed),d(46,gold(7,16),not_committed),d(43,gold(8,18),not_committed),d(44,gold(9,16),not_committed),d(48,gold(7,15),not_committed)]. Next gold is gold(43,16) -[MiningEnvironment] Cycle 52 finished in 15 ms, mean is 15. -[dummy4] picked gold! -[MiningEnvironment] Cycle 53 finished in 5 ms, mean is 15. -[MiningEnvironment] Cycle 54 finished in 10 ms, mean is 15. -[miner4] Gold perceived: gold(9,16) -[miner4] All golds=[gold(9,16)], evaluation=[d(1,gold(9,16),not_committed)] -[miner2] Picked gold(43,16), I have 1 pieces of gold -[miner4] Gold options are [d(1,gold(9,16),not_committed)]. Next gold is gold(9,16) -[miner4] Handling gold(9,16) now. -[miner2] All golds=[gold(44,17),gold(12,13),gold(30,7),gold(11,15),gold(10,17),gold(7,16),gold(8,18),gold(9,16),gold(7,15)], evaluation=[d(2,gold(44,17),not_committed),d(41,gold(12,13),not_committed),d(27,gold(30,7),not_committed),d(43,gold(11,15),not_committed),d(46,gold(10,17),not_committed),d(49,gold(7,16),not_committed),d(50,gold(8,18),not_committed),d(46,gold(9,16),not_committed),d(48,gold(7,15),not_committed)] -[miner2] Gold options are [d(2,gold(44,17),not_committed),d(41,gold(12,13),not_committed),d(27,gold(30,7),not_committed),d(43,gold(11,15),not_committed),d(46,gold(10,17),not_committed),d(49,gold(7,16),not_committed),d(50,gold(8,18),not_committed),d(46,gold(9,16),not_committed),d(48,gold(7,15),not_committed)]. Next gold is gold(44,17) -[miner2] Handling gold(44,17) now. -[MiningEnvironment] Cycle 55 finished in 15 ms, mean is 15. -[miner2] Gold perceived: gold(43,16) -[miner2] All golds=[gold(43,16),gold(44,17),gold(12,13),gold(30,7),gold(11,15),gold(10,17),gold(7,16),gold(8,18),gold(9,16),gold(7,15)], evaluation=[d(1,gold(43,16),not_committed),d(1,gold(44,17),not_committed),d(43,gold(12,13),not_committed),d(28,gold(30,7),not_committed),d(44,gold(11,15),not_committed),d(48,gold(10,17),not_committed),d(50,gold(7,16),not_committed),d(51,gold(8,18),not_committed),d(49,gold(7,15),not_committed)] -[miner2] Gold options are [d(1,gold(43,16),not_committed),d(1,gold(44,17),not_committed),d(43,gold(12,13),not_committed),d(28,gold(30,7),not_committed),d(44,gold(11,15),not_committed),d(48,gold(10,17),not_committed),d(50,gold(7,16),not_committed),d(51,gold(8,18),not_committed),d(49,gold(7,15),not_committed)]. Next gold is gold(43,16) -[miner2] Handling gold(43,16) now. -[miner2] The gold at 44,17 was picked by someone else! Announcing to others. -[MiningEnvironment] Cycle 56 finished in 15 ms, mean is 15. -[miner4] Gold perceived: gold(10,17) -[miner4] All golds=[gold(10,17),gold(9,16)], evaluation=[d(2,gold(10,17),not_committed),d(0,gold(9,16),in_my_place)] -[miner4] Gold options are [d(2,gold(10,17),not_committed),d(0,gold(9,16),in_my_place)]. Next gold is gold(9,16) -[miner4] Picked gold(9,16), I have 2 pieces of gold -[miner4] All golds=[gold(10,17)], evaluation=[d(2,gold(10,17),not_committed)] -[miner4] Gold options are [d(2,gold(10,17),not_committed)]. Next gold is gold(10,17) -[miner4] Handling gold(10,17) now. -[MiningEnvironment] Cycle 57 finished in 9 ms, mean is 15. -[MiningEnvironment] Cycle 58 finished in 4 ms, mean is 15. -[miner2] Picked gold(43,16), I have 2 pieces of gold -[miner2] All golds=[gold(12,13),gold(30,7),gold(11,15),gold(10,17),gold(7,16),gold(8,18),gold(7,15)], evaluation=[d(46,gold(12,13),not_committed),d(30,gold(30,7),not_committed),d(47,gold(11,15),not_committed),d(54,gold(7,16),not_committed),d(56,gold(8,18),not_committed),d(53,gold(7,15),not_committed)] -[miner2] Gold options are [d(46,gold(12,13),not_committed),d(30,gold(30,7),not_committed),d(47,gold(11,15),not_committed),d(54,gold(7,16),not_committed),d(56,gold(8,18),not_committed),d(53,gold(7,15),not_committed)]. Next gold is gold(30,7) -[miner2] Handling gold(30,7) now. -[MiningEnvironment] Cycle 59 finished in 16 ms, mean is 15. -[miner4] Picked gold(10,17), I have 3 pieces of gold -[miner4] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 60 finished in 6 ms, mean is 15. -[miner2] Gold perceived: gold(43,13) -[miner2] All golds=[gold(43,13),gold(12,13),gold(30,7),gold(11,15),gold(7,16),gold(8,18),gold(7,15)], evaluation=[d(1,gold(43,13),not_committed),d(43,gold(12,13),not_committed),d(27,gold(30,7),not_committed),d(45,gold(11,15),not_committed),d(51,gold(7,16),not_committed),d(53,gold(8,18),not_committed),d(50,gold(7,15),not_committed)] -[miner2] Gold options are [d(1,gold(43,13),not_committed),d(43,gold(12,13),not_committed),d(27,gold(30,7),not_committed),d(45,gold(11,15),not_committed),d(51,gold(7,16),not_committed),d(53,gold(8,18),not_committed),d(50,gold(7,15),not_committed)]. Next gold is gold(43,13) -[miner2] Handling gold(43,13) now. -[MiningEnvironment] Cycle 61 finished in 13 ms, mean is 15. -[miner2] Gold perceived: gold(44,13) -[miner2] All golds=[gold(44,13),gold(43,13),gold(12,13),gold(30,7),gold(11,15),gold(7,16),gold(8,18),gold(7,15)], evaluation=[d(1,gold(44,13),not_committed),d(0,gold(43,13),in_my_place),d(45,gold(12,13),not_committed),d(25,gold(30,7),not_committed),d(46,gold(11,15),not_committed),d(53,gold(7,16),not_committed),d(54,gold(8,18),not_committed),d(51,gold(7,15),not_committed)] -[miner2] Gold options are [d(1,gold(44,13),not_committed),d(0,gold(43,13),in_my_place),d(45,gold(12,13),not_committed),d(25,gold(30,7),not_committed),d(46,gold(11,15),not_committed),d(53,gold(7,16),not_committed),d(54,gold(8,18),not_committed),d(51,gold(7,15),not_committed)]. Next gold is gold(43,13) -[miner2] Picked gold(43,13), I have 2 pieces of gold -[miner2] All golds=[gold(44,13),gold(12,13),gold(30,7),gold(11,15),gold(7,16),gold(8,18),gold(7,15)], evaluation=[d(1,gold(44,13),not_committed),d(45,gold(12,13),not_committed),d(25,gold(30,7),not_committed),d(46,gold(11,15),not_committed),d(53,gold(7,16),not_committed),d(54,gold(8,18),not_committed),d(51,gold(7,15),not_committed)] -[miner2] Gold options are [d(1,gold(44,13),not_committed),d(45,gold(12,13),not_committed),d(25,gold(30,7),not_committed),d(46,gold(11,15),not_committed),d(53,gold(7,16),not_committed),d(54,gold(8,18),not_committed),d(51,gold(7,15),not_committed)]. Next gold is gold(44,13) -[miner2] Handling gold(44,13) now. -[MiningEnvironment] Cycle 62 finished in 20 ms, mean is 15. -[miner2] Gold perceived: gold(43,13) -[miner2] All golds=[gold(43,13),gold(44,13),gold(12,13),gold(30,7),gold(11,15),gold(7,16),gold(8,18),gold(7,15)], evaluation=[d(1,gold(43,13),not_committed),d(0,gold(44,13),in_my_place),d(46,gold(12,13),not_committed),d(27,gold(30,7),not_committed),d(47,gold(11,15),not_committed),d(54,gold(7,16),not_committed),d(56,gold(8,18),not_committed),d(53,gold(7,15),not_committed)] -[miner2] Gold options are [d(1,gold(43,13),not_committed),d(0,gold(44,13),in_my_place),d(46,gold(12,13),not_committed),d(27,gold(30,7),not_committed),d(47,gold(11,15),not_committed),d(54,gold(7,16),not_committed),d(56,gold(8,18),not_committed),d(53,gold(7,15),not_committed)]. Next gold is gold(44,13) -[miner2] Gold perceived: gold(45,12) -[miner2] All golds=[gold(45,12),gold(43,13),gold(44,13),gold(12,13),gold(30,7),gold(11,15),gold(7,16),gold(8,18),gold(7,15)], evaluation=[d(2,gold(45,12),not_committed),d(1,gold(43,13),not_committed),d(0,gold(44,13),in_my_place),d(46,gold(12,13),not_committed),d(27,gold(30,7),not_committed),d(47,gold(11,15),not_committed),d(54,gold(7,16),not_committed),d(56,gold(8,18),not_committed),d(53,gold(7,15),not_committed)] -[miner2] Gold options are [d(2,gold(45,12),not_committed),d(1,gold(43,13),not_committed),d(0,gold(44,13),in_my_place),d(46,gold(12,13),not_committed),d(27,gold(30,7),not_committed),d(47,gold(11,15),not_committed),d(54,gold(7,16),not_committed),d(56,gold(8,18),not_committed),d(53,gold(7,15),not_committed)]. Next gold is gold(44,13) -[miner2] Gold perceived: gold(45,13) -[miner2] All golds=[gold(45,13),gold(45,12),gold(43,13),gold(44,13),gold(12,13),gold(30,7),gold(11,15),gold(7,16),gold(8,18),gold(7,15)], evaluation=[d(1,gold(45,13),not_committed),d(2,gold(45,12),not_committed),d(1,gold(43,13),not_committed),d(0,gold(44,13),in_my_place),d(46,gold(12,13),not_committed),d(27,gold(30,7),not_committed),d(47,gold(11,15),not_committed),d(54,gold(7,16),not_committed),d(56,gold(8,18),not_committed),d(53,gold(7,15),not_committed)] -[miner2] Gold options are [d(1,gold(45,13),not_committed),d(2,gold(45,12),not_committed),d(1,gold(43,13),not_committed),d(0,gold(44,13),in_my_place),d(46,gold(12,13),not_committed),d(27,gold(30,7),not_committed),d(47,gold(11,15),not_committed),d(54,gold(7,16),not_committed),d(56,gold(8,18),not_committed),d(53,gold(7,15),not_committed)]. Next gold is gold(44,13) -[MiningEnvironment] Cycle 63 finished in 32 ms, mean is 15. -[miner4] *** Start it all again! -[miner4] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 64 finished in 4 ms, mean is 15. -[MiningEnvironment] Cycle 65 finished in 7 ms, mean is 15. -[miner2] Picked gold(44,13), I have 3 pieces of gold -[miner2] Going to depot to deliver 3 golds. -[miner2] Announcing gold(45,13), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner2] Announcing gold(45,12), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner2] Announcing gold(43,13), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 66 finished in 10 ms, mean is 14. -[MiningEnvironment] Cycle 67 finished in 12 ms, mean is 14. -[MiningEnvironment] Cycle 68 finished in 5 ms, mean is 14. -[miner5] *** Start it all again! -[miner5] Going to depot to deliver 3 golds. -[miner4] *** Start it all again! -[miner4] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 69 finished in 6 ms, mean is 14. -[miner2] Announcing gold(41,12) to others -[MiningEnvironment] Cycle 70 finished in 10 ms, mean is 14. -[MiningEnvironment] Cycle 71 finished in 7 ms, mean is 14. -[miner2] Announcing gold(39,13) to others -[MiningEnvironment] Cycle 72 finished in 8 ms, mean is 14. -[miner3] Gold perceived: gold(1,31) -[miner3] All golds=[gold(1,31),gold(39,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7),gold(11,15),gold(7,16),gold(8,18),gold(7,15)], evaluation=[d(2,gold(1,31),not_committed),d(59,gold(39,13),not_committed),d(62,gold(41,12),not_committed),d(63,gold(43,13),not_committed),d(67,gold(45,12),not_committed),d(66,gold(45,13),not_committed),d(29,gold(12,13),not_committed),d(26,gold(11,15),not_committed),d(20,gold(7,16),not_committed),d(19,gold(8,18),not_committed),d(22,gold(7,15),not_committed)] -[miner3] Gold options are [d(2,gold(1,31),not_committed),d(59,gold(39,13),not_committed),d(62,gold(41,12),not_committed),d(63,gold(43,13),not_committed),d(67,gold(45,12),not_committed),d(66,gold(45,13),not_committed),d(29,gold(12,13),not_committed),d(26,gold(11,15),not_committed),d(20,gold(7,16),not_committed),d(19,gold(8,18),not_committed),d(22,gold(7,15),not_committed)]. Next gold is gold(1,31) -[miner3] Dropping around(_,_) desires and intentions to handle gold -[miner3] Handling gold(1,31) now. -[MiningEnvironment] Cycle 73 finished in 26 ms, mean is 14. -[miner5] *** Start it all again! -[miner5] Going to depot to deliver 3 golds. -[miner4] *** Start it all again! -[miner2] Announcing gold(39,16) to others -[miner4] Going to depot to deliver 3 golds. -[miner3] Gold perceived: gold(0,31) -[miner3] All golds=[gold(0,31),gold(39,16),gold(1,31),gold(39,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7),gold(11,15),gold(7,16),gold(8,18),gold(7,15)], evaluation=[d(2,gold(0,31),not_committed),d(57,gold(39,16),not_committed),d(1,gold(1,31),not_committed),d(60,gold(39,13),not_committed),d(63,gold(41,12),not_committed),d(64,gold(43,13),not_committed),d(68,gold(45,12),not_committed),d(67,gold(45,13),not_committed),d(30,gold(12,13),not_committed),d(27,gold(11,15),not_committed),d(22,gold(7,16),not_committed),d(20,gold(8,18),not_committed),d(23,gold(7,15),not_committed)] -[miner3] Gold options are [d(2,gold(0,31),not_committed),d(57,gold(39,16),not_committed),d(1,gold(1,31),not_committed),d(60,gold(39,13),not_committed),d(63,gold(41,12),not_committed),d(64,gold(43,13),not_committed),d(68,gold(45,12),not_committed),d(67,gold(45,13),not_committed),d(30,gold(12,13),not_committed),d(27,gold(11,15),not_committed),d(22,gold(7,16),not_committed),d(20,gold(8,18),not_committed),d(23,gold(7,15),not_committed)]. Next gold is gold(1,31) -[MiningEnvironment] Cycle 74 finished in 37 ms, mean is 14. -[MiningEnvironment] Cycle 75 finished in 10 ms, mean is 14. -[miner3] Picked gold(1,31), I have 1 pieces of gold -[miner3] All golds=[gold(0,31),gold(39,16),gold(39,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7),gold(11,15),gold(7,16),gold(8,18),gold(7,15)], evaluation=[d(1,gold(0,31),not_committed),d(65,gold(39,16),not_committed),d(69,gold(39,13),not_committed),d(72,gold(41,12),not_committed),d(74,gold(43,13),not_committed),d(77,gold(45,12),not_committed),d(76,gold(45,13),not_committed),d(35,gold(12,13),not_committed),d(32,gold(11,15),not_committed),d(25,gold(7,16),not_committed),d(24,gold(8,18),not_committed),d(27,gold(7,15),not_committed)] -[miner3] Gold options are [d(1,gold(0,31),not_committed),d(65,gold(39,16),not_committed),d(69,gold(39,13),not_committed),d(72,gold(41,12),not_committed),d(74,gold(43,13),not_committed),d(77,gold(45,12),not_committed),d(76,gold(45,13),not_committed),d(35,gold(12,13),not_committed),d(32,gold(11,15),not_committed),d(25,gold(7,16),not_committed),d(24,gold(8,18),not_committed),d(27,gold(7,15),not_committed)]. Next gold is gold(0,31) -[miner3] Handling gold(0,31) now. -[MiningEnvironment] Cycle 76 finished in 20 ms, mean is 14. -[MiningEnvironment] Cycle 77 finished in 6 ms, mean is 14. -[MiningEnvironment] Cycle 78 finished in 4 ms, mean is 14. -[miner4] Announcing gold(11,15) to others -[miner3] Picked gold(0,31), I have 2 pieces of gold -[miner3] All golds=[gold(39,16),gold(39,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7),gold(11,15),gold(7,16),gold(8,18),gold(7,15)], evaluation=[d(73,gold(39,16),not_committed),d(77,gold(39,13),not_committed),d(82,gold(41,12),not_committed),d(83,gold(43,13),not_committed),d(87,gold(45,12),not_committed),d(86,gold(45,13),not_committed),d(41,gold(12,13),not_committed),d(36,gold(11,15),not_committed),d(30,gold(7,16),not_committed),d(28,gold(8,18),not_committed),d(31,gold(7,15),not_committed)] -[miner3] Gold options are [d(73,gold(39,16),not_committed),d(77,gold(39,13),not_committed),d(82,gold(41,12),not_committed),d(83,gold(43,13),not_committed),d(87,gold(45,12),not_committed),d(86,gold(45,13),not_committed),d(41,gold(12,13),not_committed),d(36,gold(11,15),not_committed),d(30,gold(7,16),not_committed),d(28,gold(8,18),not_committed),d(31,gold(7,15),not_committed)]. Next gold is gold(8,18) -[miner3] Handling gold(8,18) now. -[MiningEnvironment] Cycle 79 finished in 35 ms, mean is 14. -[MiningEnvironment] Cycle 80 finished in 5 ms, mean is 14. -[WorldModel] Agent 11 carried 3 golds to depot! -[MiningEnvironment] Cycle 81 finished in 7 ms, mean is 14. -[miner5] All golds=[], evaluation=[] -[miner5] New goal is find gold: near_unvisited -[miner2] *** Start it all again! -[miner2] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 82 finished in 7 ms, mean is 14. -[MiningEnvironment] Cycle 83 finished in 11 ms, mean is 14. -[miner2] Announcing gold(39,15) to others -[MiningEnvironment] Cycle 84 finished in 6 ms, mean is 14. -[miner4] Announcing gold(12,13) to others -[MiningEnvironment] Cycle 85 finished in 18 ms, mean is 14. -[MiningEnvironment] Cycle 86 finished in 9 ms, mean is 14. -[WorldModel] Agent 7 carried 3 golds to depot! -[miner2] Announcing gold(39,16) to others -[MiningEnvironment] Cycle 87 finished in 4 ms, mean is 14. -[miner1] All golds=[gold(39,15),gold(39,16),gold(39,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7),gold(11,15),gold(7,15),gold(8,18),gold(7,16)], evaluation=[d(30,gold(39,15),not_committed),d(31,gold(39,16),not_committed),d(33,gold(39,13),not_committed),d(36,gold(41,12),not_committed),d(37,gold(43,13),not_committed),d(40,gold(45,12),not_committed),d(39,gold(45,13),not_committed),d(42,gold(12,13),not_committed),d(44,gold(11,15),not_committed),d(46,gold(7,15),not_committed),d(45,gold(7,16),not_committed)] -[miner1] Gold options are [d(30,gold(39,15),not_committed),d(31,gold(39,16),not_committed),d(33,gold(39,13),not_committed),d(36,gold(41,12),not_committed),d(37,gold(43,13),not_committed),d(40,gold(45,12),not_committed),d(39,gold(45,13),not_committed),d(42,gold(12,13),not_committed),d(44,gold(11,15),not_committed),d(46,gold(7,15),not_committed),d(45,gold(7,16),not_committed)]. Next gold is gold(39,15) -[miner1] Handling gold(39,15) now. -[MiningEnvironment] Cycle 88 finished in 13 ms, mean is 14. -[MiningEnvironment] Cycle 89 finished in 4 ms, mean is 14. -[miner5] All golds=[], evaluation=[] -[miner5] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 90 finished in 4 ms, mean is 14. -[MiningEnvironment] Cycle 91 finished in 3 ms, mean is 13. -[MiningEnvironment] Cycle 92 finished in 5 ms, mean is 13. -[miner2] Announcing gold(38,13) to others -[miner2] Announcing gold(39,13) to others -[MiningEnvironment] Cycle 93 finished in 11 ms, mean is 13. -[MiningEnvironment] Cycle 94 finished in 3 ms, mean is 13. -[MiningEnvironment] Cycle 95 finished in 4 ms, mean is 13. -[MiningEnvironment] Cycle 96 finished in 2 ms, mean is 13. -[MiningEnvironment] Cycle 97 finished in 3 ms, mean is 13. -[MiningEnvironment] Cycle 98 finished in 5 ms, mean is 13. -[MiningEnvironment] Cycle 99 finished in 6 ms, mean is 13. -[MiningEnvironment] Cycle 100 finished in 3 ms, mean is 13. -[MiningEnvironment] Cycle 101 finished in 5 ms, mean is 12. -[dummy2] in depot -[MiningEnvironment] Cycle 102 finished in 3 ms, mean is 12. -[WorldModel] Agent 2 carried 3 golds to depot! -[MiningEnvironment] Cycle 103 finished in 4 ms, mean is 12. -[MiningEnvironment] Cycle 104 finished in 3 ms, mean is 12. -[dummy4] in depot -[MiningEnvironment] Cycle 105 finished in 7 ms, mean is 12. -[WorldModel] Agent 4 carried 3 golds to depot! -[MiningEnvironment] Cycle 106 finished in 5 ms, mean is 12. -[dummy3] in depot -[miner4] *** Start it all again! -[miner4] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 107 finished in 5 ms, mean is 12. -[WorldModel] Agent 3 carried 3 golds to depot! -[MiningEnvironment] Cycle 108 finished in 6 ms, mean is 12. -[MiningEnvironment] Cycle 109 finished in 6 ms, mean is 12. -[MiningEnvironment] Cycle 110 finished in 6 ms, mean is 12. -[miner3] Picked gold(8,18), I have 2 pieces of gold -[miner3] All golds=[gold(38,13),gold(39,15),gold(39,16),gold(39,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7),gold(11,15),gold(7,16),gold(7,15)], evaluation=[d(47,gold(38,13),not_committed),d(50,gold(39,16),not_committed),d(49,gold(39,13),not_committed),d(53,gold(41,12),not_committed),d(54,gold(43,13),not_committed),d(58,gold(45,12),not_committed),d(57,gold(45,13),not_committed),d(12,gold(12,13),not_committed),d(8,gold(11,15),not_committed),d(4,gold(7,16),not_committed),d(5,gold(7,15),not_committed)] -[miner3] Gold options are [d(47,gold(38,13),not_committed),d(50,gold(39,16),not_committed),d(49,gold(39,13),not_committed),d(53,gold(41,12),not_committed),d(54,gold(43,13),not_committed),d(58,gold(45,12),not_committed),d(57,gold(45,13),not_committed),d(12,gold(12,13),not_committed),d(8,gold(11,15),not_committed),d(4,gold(7,16),not_committed),d(5,gold(7,15),not_committed)]. Next gold is gold(7,16) -[miner3] Handling gold(7,16) now. -[MiningEnvironment] Cycle 111 finished in 18 ms, mean is 12. -[MiningEnvironment] Cycle 112 finished in 6 ms, mean is 12. -[MiningEnvironment] Cycle 113 finished in 4 ms, mean is 12. -[MiningEnvironment] Cycle 114 finished in 6 ms, mean is 12. -[MiningEnvironment] Cycle 115 finished in 3 ms, mean is 12. -[miner3] The gold at 7,15 was picked by someone else! Announcing to others. -[MiningEnvironment] Cycle 116 finished in 4 ms, mean is 12. -[miner3] Picked gold(7,16), I have 2 pieces of gold -[miner3] All golds=[gold(38,13),gold(39,15),gold(39,16),gold(39,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7),gold(11,15)], evaluation=[d(46,gold(38,13),not_committed),d(49,gold(39,16),not_committed),d(47,gold(39,13),not_committed),d(51,gold(41,12),not_committed),d(53,gold(43,13),not_committed),d(57,gold(45,12),not_committed),d(56,gold(45,13),not_committed),d(10,gold(12,13),not_committed),d(6,gold(11,15),not_committed)] -[miner3] Gold options are [d(46,gold(38,13),not_committed),d(49,gold(39,16),not_committed),d(47,gold(39,13),not_committed),d(51,gold(41,12),not_committed),d(53,gold(43,13),not_committed),d(57,gold(45,12),not_committed),d(56,gold(45,13),not_committed),d(10,gold(12,13),not_committed),d(6,gold(11,15),not_committed)]. Next gold is gold(11,15) -[miner3] Handling gold(11,15) now. -[MiningEnvironment] Cycle 117 finished in 11 ms, mean is 12. -[MiningEnvironment] Cycle 118 finished in 4 ms, mean is 11. -[MiningEnvironment] Cycle 119 finished in 2 ms, mean is 11. -[MiningEnvironment] Cycle 120 finished in 4 ms, mean is 11. -[dummy1] in depot -[MiningEnvironment] Cycle 121 finished in 6 ms, mean is 11. -[WorldModel] Agent 1 carried 3 golds to depot! -[MiningEnvironment] Cycle 122 finished in 3 ms, mean is 11. -[MiningEnvironment] Cycle 123 finished in 5 ms, mean is 11. -[MiningEnvironment] Cycle 124 finished in 4 ms, mean is 11. -[miner1] Picked gold(39,15), I have 1 pieces of gold -[miner1] All golds=[gold(38,13),gold(39,16),gold(39,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7),gold(11,15)], evaluation=[d(3,gold(38,13),not_committed),d(1,gold(39,16),not_committed),d(2,gold(39,13),not_committed),d(6,gold(41,12),not_committed),d(7,gold(43,13),not_committed),d(11,gold(45,12),not_committed),d(9,gold(45,13),not_committed),d(35,gold(12,13),not_committed),d(20,gold(30,7),committed_by(miner2,at(33,27),far(23)))] -[miner1] Gold options are [d(3,gold(38,13),not_committed),d(1,gold(39,16),not_committed),d(2,gold(39,13),not_committed),d(6,gold(41,12),not_committed),d(7,gold(43,13),not_committed),d(11,gold(45,12),not_committed),d(9,gold(45,13),not_committed),d(35,gold(12,13),not_committed),d(20,gold(30,7),committed_by(miner2,at(33,27),far(23)))]. Next gold is gold(39,16) -[miner1] Handling gold(39,16) now. -[MiningEnvironment] Cycle 125 finished in 6 ms, mean is 11. -[miner1] Picked gold(39,16), I have 1 pieces of gold -[miner1] All golds=[gold(38,13),gold(39,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7),gold(11,15)], evaluation=[d(4,gold(38,13),not_committed),d(3,gold(39,13),not_committed),d(7,gold(41,12),not_committed),d(8,gold(43,13),not_committed),d(12,gold(45,12),not_committed),d(11,gold(45,13),not_committed),d(37,gold(12,13),not_committed),d(22,gold(30,7),committed_by(miner2,at(33,27),far(23)))] -[miner1] Gold options are [d(4,gold(38,13),not_committed),d(3,gold(39,13),not_committed),d(7,gold(41,12),not_committed),d(8,gold(43,13),not_committed),d(12,gold(45,12),not_committed),d(11,gold(45,13),not_committed),d(37,gold(12,13),not_committed),d(22,gold(30,7),committed_by(miner2,at(33,27),far(23)))]. Next gold is gold(39,13) -[miner1] Handling gold(39,13) now. -[MiningEnvironment] Cycle 126 finished in 13 ms, mean is 11. -[dummy5] in depot -[miner3] Picked gold(11,15), I have 3 pieces of gold -[miner1] Gold perceived: gold(39,16) -[miner3] Going to depot to deliver 3 golds. -[miner1] All golds=[gold(39,16),gold(38,13),gold(39,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7),gold(11,15)], evaluation=[d(1,gold(39,16),not_committed),d(3,gold(38,13),not_committed),d(2,gold(39,13),not_committed),d(6,gold(41,12),not_committed),d(7,gold(43,13),not_committed),d(11,gold(45,12),not_committed),d(9,gold(45,13),not_committed),d(35,gold(12,13),not_committed),d(20,gold(30,7),committed_by(miner2,at(33,28),far(24)))] -[miner1] Gold options are [d(1,gold(39,16),not_committed),d(3,gold(38,13),not_committed),d(2,gold(39,13),not_committed),d(6,gold(41,12),not_committed),d(7,gold(43,13),not_committed),d(11,gold(45,12),not_committed),d(9,gold(45,13),not_committed),d(35,gold(12,13),not_committed),d(20,gold(30,7),committed_by(miner2,at(33,28),far(24)))]. Next gold is gold(39,16) -[miner1] Handling gold(39,16) now. -[MiningEnvironment] Cycle 127 finished in 24 ms, mean is 11. -[WorldModel] Agent 5 carried 3 golds to depot! -[MiningEnvironment] Cycle 128 finished in 3 ms, mean is 11. -[miner1] Picked gold(39,16), I have 2 pieces of gold -[miner1] All golds=[gold(38,13),gold(39,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(5,gold(38,13),not_committed),d(4,gold(39,13),not_committed),d(8,gold(41,12),not_committed),d(9,gold(43,13),not_committed),d(13,gold(45,12),not_committed),d(12,gold(45,13),not_committed),d(41,gold(12,13),not_committed)] -[miner1] Gold options are [d(5,gold(38,13),not_committed),d(4,gold(39,13),not_committed),d(8,gold(41,12),not_committed),d(9,gold(43,13),not_committed),d(13,gold(45,12),not_committed),d(12,gold(45,13),not_committed),d(41,gold(12,13),not_committed)]. Next gold is gold(39,13) -[miner1] Handling gold(39,13) now. -[MiningEnvironment] Cycle 129 finished in 9 ms, mean is 11. -[MiningEnvironment] Cycle 130 finished in 3 ms, mean is 11. -[MiningEnvironment] Cycle 131 finished in 3 ms, mean is 11. -[MiningEnvironment] Cycle 132 finished in 4 ms, mean is 11. -[MiningEnvironment] Cycle 133 finished in 3 ms, mean is 11. -[miner1] Picked gold(39,13), I have 3 pieces of gold -[miner1] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 134 finished in 4 ms, mean is 11. -[MiningEnvironment] Cycle 135 finished in 4 ms, mean is 11. -[MiningEnvironment] Cycle 136 finished in 3 ms, mean is 11. -[MiningEnvironment] Cycle 137 finished in 3 ms, mean is 11. -[miner1] Announcing gold(37,12) to others -[MiningEnvironment] Cycle 138 finished in 3 ms, mean is 11. -[MiningEnvironment] Cycle 139 finished in 4 ms, mean is 10. -[miner2] *** Start it all again! -[miner2] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 140 finished in 3 ms, mean is 10. -[MiningEnvironment] Cycle 141 finished in 2 ms, mean is 10. -[MiningEnvironment] Cycle 142 finished in 4 ms, mean is 10. -[MiningEnvironment] Cycle 143 finished in 2 ms, mean is 10. -[dummy3] picked gold! -[dummy2] picked gold! -[MiningEnvironment] Cycle 144 finished in 2 ms, mean is 10. -[MiningEnvironment] Cycle 145 finished in 3 ms, mean is 10. -[dummy2] picked gold! -[dummy3] picked gold! -[MiningEnvironment] Cycle 146 finished in 3 ms, mean is 10. -[dummy2] picked gold! -[MiningEnvironment] Cycle 147 finished in 2 ms, mean is 10. -[MiningEnvironment] Cycle 148 finished in 2 ms, mean is 10. -[dummy2] picked gold! -[MiningEnvironment] Cycle 149 finished in 3 ms, mean is 10. -[dummy3] picked gold! -[MiningEnvironment] Cycle 150 finished in 2 ms, mean is 10. -[MiningEnvironment] Cycle 151 finished in 2 ms, mean is 10. -[MiningEnvironment] Cycle 152 finished in 2 ms, mean is 10. -[MiningEnvironment] Cycle 153 finished in 2 ms, mean is 10. -[dummy3] picked gold! -[dummy2] picked gold! -[MiningEnvironment] Cycle 154 finished in 3 ms, mean is 10. -[dummy3] picked gold! -[MiningEnvironment] Cycle 155 finished in 2 ms, mean is 10. -[MiningEnvironment] Cycle 156 finished in 5 ms, mean is 10. -[WorldModel] Agent 8 carried 3 golds to depot! -[MiningEnvironment] Cycle 157 finished in 2 ms, mean is 10. -[miner2] All golds=[], evaluation=[] -[miner2] New goal is find gold: quadrant -[MiningEnvironment] Cycle 158 finished in 3 ms, mean is 9. -[MiningEnvironment] Cycle 159 finished in 2 ms, mean is 9. -[dummy4] picked gold! -[MiningEnvironment] Cycle 160 finished in 2 ms, mean is 9. -[MiningEnvironment] Cycle 161 finished in 2 ms, mean is 9. -[dummy4] picked gold! -[MiningEnvironment] Cycle 162 finished in 3 ms, mean is 9. -[dummy4] picked gold! -[dummy1] picked gold! -[MiningEnvironment] Cycle 163 finished in 4 ms, mean is 9. -[MiningEnvironment] Cycle 164 finished in 3 ms, mean is 9. -[WorldModel] Agent 10 carried 3 golds to depot! -[MiningEnvironment] Cycle 165 finished in 3 ms, mean is 9. -[miner4] All golds=[], evaluation=[] -[miner4] New goal is find gold: near_unvisited -[dummy1] picked gold! -[MiningEnvironment] Cycle 166 finished in 3 ms, mean is 9. -[MiningEnvironment] Cycle 167 finished in 3 ms, mean is 9. -[MiningEnvironment] Cycle 168 finished in 3 ms, mean is 9. -[dummy1] picked gold! -[MiningEnvironment] Cycle 169 finished in 3 ms, mean is 9. -[MiningEnvironment] Cycle 170 finished in 3 ms, mean is 9. -[MiningEnvironment] Cycle 171 finished in 3 ms, mean is 9. -[dummy1] picked gold! -[MiningEnvironment] Cycle 172 finished in 3 ms, mean is 9. -[dummy1] picked gold! -[MiningEnvironment] Cycle 173 finished in 3 ms, mean is 9. -[MiningEnvironment] Cycle 174 finished in 4 ms, mean is 9. -[MiningEnvironment] Cycle 175 finished in 3 ms, mean is 9. -[dummy5] picked gold! -[MiningEnvironment] Cycle 176 finished in 4 ms, mean is 9. -[MiningEnvironment] Cycle 177 finished in 4 ms, mean is 9. -[MiningEnvironment] Cycle 178 finished in 2 ms, mean is 9. -[dummy4] picked gold! -[MiningEnvironment] Cycle 179 finished in 4 ms, mean is 9. -[dummy4] picked gold! -[MiningEnvironment] Cycle 180 finished in 4 ms, mean is 9. -[MiningEnvironment] Cycle 181 finished in 4 ms, mean is 9. -[MiningEnvironment] Cycle 182 finished in 3 ms, mean is 9. -[MiningEnvironment] Cycle 183 finished in 4 ms, mean is 9. -[MiningEnvironment] Cycle 184 finished in 4 ms, mean is 9. -[miner2] in no Q, going to X1 -[MiningEnvironment] Cycle 185 finished in 5 ms, mean is 8. -[MiningEnvironment] Cycle 186 finished in 4 ms, mean is 8. -[MiningEnvironment] Cycle 187 finished in 4 ms, mean is 8. -[MiningEnvironment] Cycle 188 finished in 3 ms, mean is 8. -[MiningEnvironment] Cycle 189 finished in 3 ms, mean is 8. -[MiningEnvironment] Cycle 190 finished in 5 ms, mean is 8. -[MiningEnvironment] Cycle 191 finished in 5 ms, mean is 8. -[MiningEnvironment] Cycle 192 finished in 4 ms, mean is 8. -[MiningEnvironment] Cycle 193 finished in 9 ms, mean is 8. -[MiningEnvironment] Cycle 194 finished in 2 ms, mean is 8. -[miner4] All golds=[], evaluation=[] -[miner4] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 195 finished in 2 ms, mean is 8. -[WorldModel] Agent 7 carried 3 golds to depot! -[MiningEnvironment] Cycle 196 finished in 2 ms, mean is 8. -[miner1] All golds=[gold(37,12),gold(38,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(31,gold(37,12),not_committed),d(31,gold(38,13),not_committed),d(36,gold(41,12),not_committed),d(37,gold(43,13),not_committed),d(40,gold(45,12),not_committed),d(39,gold(45,13),not_committed),d(42,gold(12,13),not_committed)] -[miner1] Gold options are [d(31,gold(37,12),not_committed),d(31,gold(38,13),not_committed),d(36,gold(41,12),not_committed),d(37,gold(43,13),not_committed),d(40,gold(45,12),not_committed),d(39,gold(45,13),not_committed),d(42,gold(12,13),not_committed)]. Next gold is gold(37,12) -[miner1] Handling gold(37,12) now. -[MiningEnvironment] Cycle 197 finished in 6 ms, mean is 8. -[MiningEnvironment] Cycle 198 finished in 3 ms, mean is 8. -[MiningEnvironment] Cycle 199 finished in 3 ms, mean is 8. -[MiningEnvironment] Cycle 200 finished in 2 ms, mean is 8. -[miner6] All golds=[], evaluation=[] -[miner6] New goal is find gold: near_unvisited -[miner2] in Q3 to 50x22 -[MiningEnvironment] Cycle 201 finished in 4 ms, mean is 8. -[WorldModel] Agent 9 carried 3 golds to depot! -[MiningEnvironment] Cycle 202 finished in 3 ms, mean is 8. -[miner3] All golds=[gold(37,12),gold(38,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(31,gold(38,13),not_committed),d(36,gold(41,12),not_committed),d(37,gold(43,13),not_committed),d(40,gold(45,12),not_committed),d(39,gold(45,13),not_committed),d(42,gold(12,13),not_committed)] -[miner3] Gold options are [d(31,gold(38,13),not_committed),d(36,gold(41,12),not_committed),d(37,gold(43,13),not_committed),d(40,gold(45,12),not_committed),d(39,gold(45,13),not_committed),d(42,gold(12,13),not_committed)]. Next gold is gold(38,13) -[miner3] Handling gold(38,13) now. -[MiningEnvironment] Cycle 203 finished in 7 ms, mean is 8. -[miner6] Gold perceived: gold(2,41) -[miner6] All golds=[gold(2,41)], evaluation=[d(2,gold(2,41),not_committed)] -[miner6] Gold options are [d(2,gold(2,41),not_committed)]. Next gold is gold(2,41) -[miner6] Dropping search_gold desires and intentions to handle gold -[miner6] Handling gold(2,41) now. -[MiningEnvironment] Cycle 204 finished in 4 ms, mean is 8. -[dummy1] picked gold! -[MiningEnvironment] Cycle 205 finished in 3 ms, mean is 8. -[MiningEnvironment] Cycle 206 finished in 3 ms, mean is 8. -[MiningEnvironment] Cycle 207 finished in 3 ms, mean is 8. -[miner6] Picked gold(2,41), I have 1 pieces of gold -[miner6] All golds=[], evaluation=[] -[miner6] Going to depot to deliver 1 golds. -[MiningEnvironment] Cycle 208 finished in 5 ms, mean is 8. -[MiningEnvironment] Cycle 209 finished in 2 ms, mean is 8. -[MiningEnvironment] Cycle 210 finished in 2 ms, mean is 8. -[miner6] Gold perceived: gold(2,38) -[miner6] All golds=[gold(2,38)], evaluation=[d(1,gold(2,38),not_committed)] -[miner6] Gold options are [d(1,gold(2,38),not_committed)]. Next gold is gold(2,38) -[miner6] Handling gold(2,38) now. -[MiningEnvironment] Cycle 211 finished in 6 ms, mean is 8. -[MiningEnvironment] Cycle 212 finished in 4 ms, mean is 8. -[miner6] Picked gold(2,38), I have 2 pieces of gold -[miner6] All golds=[], evaluation=[] -[miner6] Going to depot to deliver 2 golds. -[MiningEnvironment] Cycle 213 finished in 4 ms, mean is 8. -[MiningEnvironment] Cycle 214 finished in 3 ms, mean is 8. -[MiningEnvironment] Cycle 215 finished in 3 ms, mean is 8. -[dummy2] in depot -[MiningEnvironment] Cycle 216 finished in 4 ms, mean is 8. -[WorldModel] Agent 2 carried 3 golds to depot! -[MiningEnvironment] Cycle 217 finished in 3 ms, mean is 8. -[MiningEnvironment] Cycle 218 finished in 3 ms, mean is 8. -[MiningEnvironment] Cycle 219 finished in 2 ms, mean is 8. -[dummy3] in depot -[MiningEnvironment] Cycle 220 finished in 2 ms, mean is 8. -[WorldModel] Agent 3 carried 3 golds to depot! -[MiningEnvironment] Cycle 221 finished in 2 ms, mean is 8. -[MiningEnvironment] Cycle 222 finished in 2 ms, mean is 8. -[MiningEnvironment] Cycle 223 finished in 3 ms, mean is 8. -[MiningEnvironment] Cycle 224 finished in 2 ms, mean is 8. -[MiningEnvironment] Cycle 225 finished in 4 ms, mean is 8. -[MiningEnvironment] Cycle 226 finished in 1 ms, mean is 7. -[miner1] Gold perceived: gold(35,11) -[miner1] All golds=[gold(35,11),gold(37,12),gold(38,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(2,gold(35,11),not_committed),d(1,gold(37,12),not_committed),d(3,gold(38,13),committed_by(miner3,at(36,20),far(9))),d(5,gold(41,12),not_committed),d(8,gold(43,13),not_committed),d(9,gold(45,12),not_committed),d(11,gold(45,13),not_committed),d(27,gold(12,13),not_committed),d(12,gold(30,7),committed_by(miner2,at(44,24),far(31)))] -[miner1] Gold options are [d(2,gold(35,11),not_committed),d(1,gold(37,12),not_committed),d(3,gold(38,13),committed_by(miner3,at(36,20),far(9))),d(5,gold(41,12),not_committed),d(8,gold(43,13),not_committed),d(9,gold(45,12),not_committed),d(11,gold(45,13),not_committed),d(27,gold(12,13),not_committed),d(12,gold(30,7),committed_by(miner2,at(44,24),far(31)))]. Next gold is gold(37,12) -[MiningEnvironment] Cycle 227 finished in 5 ms, mean is 7. -[MiningEnvironment] Cycle 228 finished in 3 ms, mean is 7. -[miner4] Gold perceived: gold(9,49) -[miner1] Picked gold(37,12), I have 1 pieces of gold -[miner4] All golds=[gold(9,49)], evaluation=[d(2,gold(9,49),not_committed)] -[miner4] Gold options are [d(2,gold(9,49),not_committed)]. Next gold is gold(9,49) -[miner4] Dropping search_gold desires and intentions to handle gold -[miner4] Handling gold(9,49) now. -[miner1] All golds=[gold(35,11),gold(38,13),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(3,gold(35,11),not_committed),d(2,gold(38,13),committed_by(miner3,at(36,17),far(6))),d(4,gold(41,12),not_committed),d(8,gold(43,13),not_committed),d(9,gold(45,12),not_committed),d(11,gold(45,13),not_committed),d(32,gold(12,13),not_committed),d(14,gold(30,7),committed_by(miner2,at(44,24),far(31)))] -[miner1] Gold options are [d(3,gold(35,11),not_committed),d(2,gold(38,13),committed_by(miner3,at(36,17),far(6))),d(4,gold(41,12),not_committed),d(8,gold(43,13),not_committed),d(9,gold(45,12),not_committed),d(11,gold(45,13),not_committed),d(32,gold(12,13),not_committed),d(14,gold(30,7),committed_by(miner2,at(44,24),far(31)))]. Next gold is gold(38,13) -[miner1] Handling gold(38,13) now. -[miner3] miner1 is committed to gold(38,13) that I am pursuing (36,17/6)! Failing my intention. -[MiningEnvironment] Cycle 229 finished in 6 ms, mean is 7. -[miner3] failed to catch gold gold(38,13) -[miner4] Gold perceived: gold(7,50) -[miner4] All golds=[gold(7,50),gold(9,49)], evaluation=[d(2,gold(7,50),not_committed),d(1,gold(9,49),not_committed)] -[miner4] Gold options are [d(2,gold(7,50),not_committed),d(1,gold(9,49),not_committed)]. Next gold is gold(9,49) -[miner3] All golds=[gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(9,gold(41,12),not_committed),d(11,gold(43,13),not_committed),d(14,gold(45,12),not_committed),d(13,gold(45,13),not_committed),d(29,gold(12,13),not_committed),d(16,gold(30,7),committed_by(miner2,at(44,23),far(30)))] -[miner3] Gold options are [d(9,gold(41,12),not_committed),d(11,gold(43,13),not_committed),d(14,gold(45,12),not_committed),d(13,gold(45,13),not_committed),d(29,gold(12,13),not_committed),d(16,gold(30,7),committed_by(miner2,at(44,23),far(30)))]. Next gold is gold(41,12) -[miner3] Handling gold(41,12) now. -[MiningEnvironment] Cycle 230 finished in 6 ms, mean is 7. -[miner1] Picked gold(38,13), I have 1 pieces of gold -[miner4] Gold perceived: gold(10,48) -[miner4] All golds=[gold(10,48),gold(7,50),gold(9,49)], evaluation=[d(2,gold(10,48),not_committed),d(3,gold(7,50),not_committed),d(0,gold(9,49),in_my_place)] -[miner4] Gold options are [d(2,gold(10,48),not_committed),d(3,gold(7,50),not_committed),d(0,gold(9,49),in_my_place)]. Next gold is gold(9,49) -[miner1] All golds=[gold(35,11),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(6,gold(35,11),not_committed),d(4,gold(41,12),committed_by(miner3,at(36,15),far(8))),d(6,gold(43,13),not_committed),d(9,gold(45,12),not_committed),d(8,gold(45,13),not_committed),d(34,gold(12,13),not_committed),d(17,gold(30,7),committed_by(miner2,at(43,23),far(29)))] -[miner1] Gold options are [d(6,gold(35,11),not_committed),d(4,gold(41,12),committed_by(miner3,at(36,15),far(8))),d(6,gold(43,13),not_committed),d(9,gold(45,12),not_committed),d(8,gold(45,13),not_committed),d(34,gold(12,13),not_committed),d(17,gold(30,7),committed_by(miner2,at(43,23),far(29)))]. Next gold is gold(41,12) -[miner1] Handling gold(41,12) now. -[miner3] miner1 is committed to gold(41,12) that I am pursuing (36,15/8)! Failing my intention. -[MiningEnvironment] Cycle 231 finished in 6 ms, mean is 7. -[miner1] Gold perceived: gold(38,13) -[miner1] All golds=[gold(38,13),gold(35,11),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(1,gold(38,13),not_committed),d(4,gold(35,11),not_committed),d(3,gold(41,12),committed_by(miner3,at(36,15),far(8))),d(7,gold(43,13),not_committed),d(8,gold(45,12),not_committed),d(9,gold(45,13),not_committed),d(33,gold(12,13),not_committed),d(16,gold(30,7),committed_by(miner2,at(43,22),far(28)))] -[miner4] Picked gold(9,49), I have 1 pieces of gold -[miner3] failed to catch gold gold(41,12) -[miner1] Gold options are [d(1,gold(38,13),not_committed),d(4,gold(35,11),not_committed),d(3,gold(41,12),committed_by(miner3,at(36,15),far(8))),d(7,gold(43,13),not_committed),d(8,gold(45,12),not_committed),d(9,gold(45,13),not_committed),d(33,gold(12,13),not_committed),d(16,gold(30,7),committed_by(miner2,at(43,22),far(28)))]. Next gold is gold(38,13) -[miner4] All golds=[gold(10,48),gold(7,50)], evaluation=[d(2,gold(10,48),not_committed),d(3,gold(7,50),not_committed)] -[miner1] Handling gold(38,13) now. -[miner4] Gold options are [d(2,gold(10,48),not_committed),d(3,gold(7,50),not_committed)]. Next gold is gold(10,48) -[miner4] Handling gold(10,48) now. -[miner3] All golds=[gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(8,gold(43,13),not_committed),d(12,gold(45,12),not_committed),d(11,gold(45,13),not_committed),d(27,gold(12,13),not_committed),d(14,gold(30,7),committed_by(miner2,at(43,22),far(28)))] -[miner3] Gold options are [d(8,gold(43,13),not_committed),d(12,gold(45,12),not_committed),d(11,gold(45,13),not_committed),d(27,gold(12,13),not_committed),d(14,gold(30,7),committed_by(miner2,at(43,22),far(28)))]. Next gold is gold(43,13) -[miner3] Handling gold(43,13) now. -[MiningEnvironment] Cycle 232 finished in 8 ms, mean is 7. -[MiningEnvironment] Cycle 233 finished in 4 ms, mean is 7. -[miner1] Picked gold(38,13), I have 2 pieces of gold -[miner1] All golds=[gold(35,11),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(6,gold(35,11),not_committed),d(5,gold(41,12),not_committed),d(10,gold(45,12),not_committed),d(9,gold(45,13),not_committed),d(38,gold(12,13),not_committed),d(19,gold(30,7),committed_by(miner2,at(42,21),far(26)))] -[miner1] Gold options are [d(6,gold(35,11),not_committed),d(5,gold(41,12),not_committed),d(10,gold(45,12),not_committed),d(9,gold(45,13),not_committed),d(38,gold(12,13),not_committed),d(19,gold(30,7),committed_by(miner2,at(42,21),far(26)))]. Next gold is gold(41,12) -[miner1] Handling gold(41,12) now. -[MiningEnvironment] Cycle 234 finished in 6 ms, mean is 7. -[miner4] Picked gold(10,48), I have 2 pieces of gold -[miner4] All golds=[gold(7,50)], evaluation=[d(6,gold(7,50),not_committed)] -[miner4] Gold options are [d(6,gold(7,50),not_committed)]. Next gold is gold(7,50) -[miner4] Handling gold(7,50) now. -[MiningEnvironment] Cycle 235 finished in 5 ms, mean is 7. -[MiningEnvironment] Cycle 236 finished in 2 ms, mean is 7. -[MiningEnvironment] Cycle 237 finished in 4 ms, mean is 7. -[miner1] Gold perceived: gold(40,11) -[miner1] All golds=[gold(40,11),gold(35,11),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(1,gold(40,11),not_committed),d(8,gold(35,11),not_committed),d(1,gold(41,12),not_committed),d(6,gold(45,12),not_committed),d(8,gold(45,13),not_committed),d(39,gold(12,13),not_committed),d(20,gold(30,7),committed_by(miner2,at(45,20),far(28)))] -[miner1] Gold options are [d(1,gold(40,11),not_committed),d(8,gold(35,11),not_committed),d(1,gold(41,12),not_committed),d(6,gold(45,12),not_committed),d(8,gold(45,13),not_committed),d(39,gold(12,13),not_committed),d(20,gold(30,7),committed_by(miner2,at(45,20),far(28)))]. Next gold is gold(40,11) -[miner1] Gold perceived: gold(41,11) -[miner1] All golds=[gold(41,11),gold(40,11),gold(35,11),gold(41,12),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(2,gold(41,11),not_committed),d(1,gold(40,11),not_committed),d(8,gold(35,11),not_committed),d(1,gold(41,12),not_committed),d(6,gold(45,12),not_committed),d(8,gold(45,13),not_committed),d(39,gold(12,13),not_committed),d(20,gold(30,7),committed_by(miner2,at(45,20),far(28)))] -[miner1] Gold options are [d(2,gold(41,11),not_committed),d(1,gold(40,11),not_committed),d(8,gold(35,11),not_committed),d(1,gold(41,12),not_committed),d(6,gold(45,12),not_committed),d(8,gold(45,13),not_committed),d(39,gold(12,13),not_committed),d(20,gold(30,7),committed_by(miner2,at(45,20),far(28)))]. Next gold is gold(40,11) -[miner1] Handling gold(40,11) now. -[miner1] The gold at 41,12 was picked by someone else! Announcing to others. -[MiningEnvironment] Cycle 238 finished in 22 ms, mean is 7. -[miner1] Gold perceived: gold(41,10) -[miner1] All golds=[gold(41,10),gold(41,11),gold(40,11),gold(35,11),gold(43,13),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(2,gold(41,10),not_committed),d(1,gold(41,11),not_committed),d(0,gold(40,11),in_my_place),d(6,gold(35,11),not_committed),d(8,gold(45,12),not_committed),d(9,gold(45,13),not_committed),d(41,gold(12,13),not_committed),d(19,gold(30,7),committed_by(miner2,at(45,20),far(28)))] -[miner1] Gold options are [d(2,gold(41,10),not_committed),d(1,gold(41,11),not_committed),d(0,gold(40,11),in_my_place),d(6,gold(35,11),not_committed),d(8,gold(45,12),not_committed),d(9,gold(45,13),not_committed),d(41,gold(12,13),not_committed),d(19,gold(30,7),committed_by(miner2,at(45,20),far(28)))]. Next gold is gold(40,11) -[MiningEnvironment] Cycle 239 finished in 5 ms, mean is 7. -[MiningEnvironment] Cycle 240 finished in 3 ms, mean is 7. -[miner1] Picked gold(40,11), I have 3 pieces of gold -[miner4] Picked gold(7,50), I have 2 pieces of gold -[miner4] All golds=[], evaluation=[] -[miner1] Going to depot to deliver 3 golds. -[miner4] Going to depot to deliver 2 golds. -[miner1] Announcing gold(41,10), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] Announcing gold(41,11), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] Announcing gold(35,11), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 241 finished in 5 ms, mean is 7. -[MiningEnvironment] Cycle 242 finished in 7 ms, mean is 7. -[MiningEnvironment] Cycle 243 finished in 3 ms, mean is 7. -[miner2] in Q2 to 25x24 -[MiningEnvironment] Cycle 244 finished in 3 ms, mean is 7. -[miner1] Announcing gold(36,10) to others -[miner3] Picked gold(43,13), I have 1 pieces of gold -[miner3] All golds=[gold(36,10),gold(35,11),gold(41,11),gold(41,10),gold(45,12),gold(45,13),gold(12,13),gold(30,7)], evaluation=[d(12,gold(36,10),not_committed),d(12,gold(35,11),not_committed),d(4,gold(41,11),not_committed),d(6,gold(41,10),not_committed),d(3,gold(45,12),not_committed),d(2,gold(45,13),not_committed),d(40,gold(12,13),not_committed),d(23,gold(30,7),committed_by(miner2,at(50,22),far(35)))] -[miner3] Gold options are [d(12,gold(36,10),not_committed),d(12,gold(35,11),not_committed),d(4,gold(41,11),not_committed),d(6,gold(41,10),not_committed),d(3,gold(45,12),not_committed),d(2,gold(45,13),not_committed),d(40,gold(12,13),not_committed),d(23,gold(30,7),committed_by(miner2,at(50,22),far(35)))]. Next gold is gold(45,13) -[miner3] Handling gold(45,13) now. -[MiningEnvironment] Cycle 245 finished in 8 ms, mean is 7. -[miner3] The gold at 45,12 was picked by someone else! Announcing to others. -[MiningEnvironment] Cycle 246 finished in 5 ms, mean is 7. -[miner4] Gold perceived: gold(12,50) -[miner4] All golds=[gold(12,50)], evaluation=[d(0,gold(12,50),in_my_place)] -[miner3] Picked gold(45,13), I have 1 pieces of gold -[miner4] Gold options are [d(0,gold(12,50),in_my_place)]. Next gold is gold(12,50) -[miner4] Handling gold(12,50) now. -[miner3] All golds=[gold(36,10),gold(35,11),gold(41,11),gold(41,10),gold(12,13),gold(30,7)], evaluation=[d(14,gold(36,10),not_committed),d(14,gold(35,11),not_committed),d(7,gold(41,11),not_committed),d(8,gold(41,10),not_committed),d(43,gold(12,13),not_committed),d(25,gold(30,7),committed_by(miner2,at(50,24),far(37)))] -[miner3] Gold options are [d(14,gold(36,10),not_committed),d(14,gold(35,11),not_committed),d(7,gold(41,11),not_committed),d(8,gold(41,10),not_committed),d(43,gold(12,13),not_committed),d(25,gold(30,7),committed_by(miner2,at(50,24),far(37)))]. Next gold is gold(41,11) -[miner3] Handling gold(41,11) now. -[MiningEnvironment] Cycle 247 finished in 8 ms, mean is 7. -[miner4] Picked gold(12,50), I have 2 pieces of gold -[miner3] Gold perceived: gold(44,11) -[miner4] All golds=[], evaluation=[] -[miner4] Going to depot to deliver 2 golds. -[miner3] All golds=[gold(44,11),gold(36,10),gold(35,11),gold(41,11),gold(41,10),gold(12,13),gold(30,7)], evaluation=[d(2,gold(44,11),not_committed),d(13,gold(36,10),not_committed),d(13,gold(35,11),not_committed),d(6,gold(41,11),not_committed),d(7,gold(41,10),not_committed),d(41,gold(12,13),not_committed),d(24,gold(30,7),committed_by(miner2,at(49,24),far(36)))] -[miner3] Gold options are [d(2,gold(44,11),not_committed),d(13,gold(36,10),not_committed),d(13,gold(35,11),not_committed),d(6,gold(41,11),not_committed),d(7,gold(41,10),not_committed),d(41,gold(12,13),not_committed),d(24,gold(30,7),committed_by(miner2,at(49,24),far(36)))]. Next gold is gold(44,11) -[miner3] Handling gold(44,11) now. -[MiningEnvironment] Cycle 248 finished in 9 ms, mean is 7. -[miner4] Gold perceived: gold(13,48) -[miner4] All golds=[gold(13,48)], evaluation=[d(2,gold(13,48),not_committed)] -[miner4] Gold options are [d(2,gold(13,48),not_committed)]. Next gold is gold(13,48) -[miner4] Handling gold(13,48) now. -[MiningEnvironment] Cycle 249 finished in 5 ms, mean is 7. -[dummy6] picked gold! -[miner3] Picked gold(44,11), I have 1 pieces of gold -[miner3] All golds=[gold(36,10),gold(35,11),gold(41,11),gold(41,10),gold(12,13),gold(30,7)], evaluation=[d(11,gold(36,10),not_committed),d(11,gold(35,11),not_committed),d(3,gold(41,11),not_committed),d(4,gold(41,10),not_committed),d(41,gold(12,13),not_committed),d(22,gold(30,7),committed_by(miner2,at(47,24),far(34)))] -[miner3] Gold options are [d(11,gold(36,10),not_committed),d(11,gold(35,11),not_committed),d(3,gold(41,11),not_committed),d(4,gold(41,10),not_committed),d(41,gold(12,13),not_committed),d(22,gold(30,7),committed_by(miner2,at(47,24),far(34)))]. Next gold is gold(41,11) -[miner3] Handling gold(41,11) now. -[MiningEnvironment] Cycle 250 finished in 7 ms, mean is 7. -[MiningEnvironment] Cycle 251 finished in 3 ms, mean is 7. -[dummy6] picked gold! -[MiningEnvironment] Cycle 252 finished in 3 ms, mean is 7. -[miner4] Picked gold(13,48), I have 3 pieces of gold -[miner4] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 253 finished in 5 ms, mean is 7. -[miner4] Announcing gold(14,48) to others -[MiningEnvironment] Cycle 254 finished in 9 ms, mean is 7. -[MiningEnvironment] Cycle 255 finished in 3 ms, mean is 7. -[MiningEnvironment] Cycle 256 finished in 8 ms, mean is 7. -[MiningEnvironment] Cycle 257 finished in 3 ms, mean is 7. -[miner6] *** Start it all again! -[miner6] All golds=[], evaluation=[] -[miner6] Going to depot to deliver 2 golds. -[miner3] Picked gold(41,11), I have 2 pieces of gold -[miner3] All golds=[gold(14,48),gold(36,10),gold(35,11),gold(41,10),gold(12,13),gold(30,7)], evaluation=[d(87,gold(14,48),not_committed),d(8,gold(36,10),not_committed),d(8,gold(35,11),not_committed),d(1,gold(41,10),not_committed),d(42,gold(12,13),not_committed),d(20,gold(30,7),committed_by(miner2,at(43,20),far(26)))] -[miner3] Gold options are [d(87,gold(14,48),not_committed),d(8,gold(36,10),not_committed),d(8,gold(35,11),not_committed),d(1,gold(41,10),not_committed),d(42,gold(12,13),not_committed),d(20,gold(30,7),committed_by(miner2,at(43,20),far(26)))]. Next gold is gold(41,10) -[miner3] Handling gold(41,10) now. -[MiningEnvironment] Cycle 258 finished in 10 ms, mean is 7. -[dummy6] picked gold! -[MiningEnvironment] Cycle 259 finished in 5 ms, mean is 7. -[dummy6] picked gold! -[miner3] *** Start it all again! -[miner3] All golds=[], evaluation=[] -[miner3] Going to depot to deliver 2 golds. -[MiningEnvironment] Cycle 260 finished in 5 ms, mean is 7. -[MiningEnvironment] Cycle 261 finished in 3 ms, mean is 7. -[miner3] Gold perceived: gold(41,10) -[miner3] All golds=[gold(41,10)], evaluation=[d(2,gold(41,10),not_committed)] -[miner3] Gold options are [d(2,gold(41,10),not_committed)]. Next gold is gold(41,10) -[miner3] Handling gold(41,10) now. -[MiningEnvironment] Cycle 262 finished in 6 ms, mean is 7. -[MiningEnvironment] Cycle 263 finished in 3 ms, mean is 7. -[miner3] Gold perceived: gold(41,9) -[miner3] All golds=[gold(41,9),gold(41,10)], evaluation=[d(2,gold(41,9),not_committed),d(1,gold(41,10),not_committed)] -[miner3] Gold options are [d(2,gold(41,9),not_committed),d(1,gold(41,10),not_committed)]. Next gold is gold(41,10) -[MiningEnvironment] Cycle 264 finished in 5 ms, mean is 7. -[miner4] Announcing gold(19,48) to others -[MiningEnvironment] Cycle 265 finished in 6 ms, mean is 7. -[miner3] Picked gold(41,10), I have 2 pieces of gold -[miner3] All golds=[gold(19,48),gold(41,9)], evaluation=[d(82,gold(19,48),not_committed),d(1,gold(41,9),not_committed)] -[miner3] Gold options are [d(82,gold(19,48),not_committed),d(1,gold(41,9),not_committed)]. Next gold is gold(41,9) -[miner3] Handling gold(41,9) now. -[MiningEnvironment] Cycle 266 finished in 6 ms, mean is 7. -[miner3] Gold perceived: gold(41,10) -[miner3] All golds=[gold(41,10),gold(19,48),gold(41,9)], evaluation=[d(0,gold(41,10),in_my_place),d(82,gold(19,48),not_committed),d(1,gold(41,9),not_committed)] -[miner3] Gold options are [d(0,gold(41,10),in_my_place),d(82,gold(19,48),not_committed),d(1,gold(41,9),not_committed)]. Next gold is gold(41,10) -[miner3] Handling gold(41,10) now. -[MiningEnvironment] Cycle 267 finished in 4 ms, mean is 7. -[miner3] Gold perceived: gold(42,9) -[miner3] All golds=[gold(42,9),gold(41,10),gold(19,48),gold(41,9)], evaluation=[d(2,gold(42,9),not_committed),d(0,gold(41,10),in_my_place),d(82,gold(19,48),not_committed),d(1,gold(41,9),not_committed)] -[miner3] Gold options are [d(2,gold(42,9),not_committed),d(0,gold(41,10),in_my_place),d(82,gold(19,48),not_committed),d(1,gold(41,9),not_committed)]. Next gold is gold(41,10) -[MiningEnvironment] Cycle 268 finished in 3 ms, mean is 7. -[miner3] Picked gold(41,10), I have 3 pieces of gold -[miner3] Going to depot to deliver 3 golds. -[miner3] Announcing gold(42,9), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner3] Announcing gold(41,9), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 269 finished in 4 ms, mean is 7. -[MiningEnvironment] Cycle 270 finished in 5 ms, mean is 7. -[MiningEnvironment] Cycle 271 finished in 3 ms, mean is 7. -[miner3] Announcing gold(38,9) to others -[MiningEnvironment] Cycle 272 finished in 3 ms, mean is 7. -[MiningEnvironment] Cycle 273 finished in 2 ms, mean is 7. -[MiningEnvironment] Cycle 274 finished in 2 ms, mean is 7. -[miner3] Announcing gold(36,10) to others -[MiningEnvironment] Cycle 275 finished in 4 ms, mean is 7. -[miner3] Announcing gold(37,9) to others -[MiningEnvironment] Cycle 276 finished in 3 ms, mean is 7. -[miner3] Announcing gold(35,9) to others -[miner3] Announcing gold(35,11) to others -[MiningEnvironment] Cycle 277 finished in 8 ms, mean is 7. -[MiningEnvironment] Cycle 278 finished in 3 ms, mean is 7. -[MiningEnvironment] Cycle 279 finished in 3 ms, mean is 7. -[WorldModel] Agent 12 carried 2 golds to depot! -[miner3] Announcing gold(33,10) to others -[MiningEnvironment] Cycle 280 finished in 2 ms, mean is 7. -[miner6] All golds=[], evaluation=[] -[miner6] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 281 finished in 3 ms, mean is 7. -[MiningEnvironment] Cycle 282 finished in 3 ms, mean is 7. -[MiningEnvironment] Cycle 283 finished in 2 ms, mean is 7. -[MiningEnvironment] Cycle 284 finished in 3 ms, mean is 7. -[MiningEnvironment] Cycle 285 finished in 2 ms, mean is 7. -[miner1] *** Start it all again! -[miner1] Going to depot to deliver 3 golds. -[miner2] in Q3 to 50x24 -[MiningEnvironment] Cycle 286 finished in 2 ms, mean is 7. -[MiningEnvironment] Cycle 287 finished in 3 ms, mean is 7. -[dummy3] picked gold! -[MiningEnvironment] Cycle 288 finished in 3 ms, mean is 7. -[miner6] No route from 26,30 to 25,30! ---------------------------------------------- -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| X | -| E6 | -| X | -| X | -| X | -| X O | -| X X X | -| | -| X X X | -| X X | -| X X | -| X X | -| X X X | -| | -| X X X | -| X X | -| X X | -| X X | -| X | -| | -| | -| | -|--------------------------------------------- - -[MiningEnvironment] Cycle 289 finished in 6 ms, mean is 7. -[MiningEnvironment] agent miner6 skips! -[miner6] No route from 26,30 to 25,30! ---------------------------------------------- -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| X | -| E6 | -| X | -| X | -| X | -| X O | -| X X X | -| | -| X X X | -| X X | -| X X | -| X X | -| X X X | -| | -| X X X | -| X X | -| X X | -| X X | -| X | -| | -| | -| | -|--------------------------------------------- - -[MiningEnvironment] Cycle 290 finished in 6 ms, mean is 7. -[MiningEnvironment] agent miner6 skips! -[miner6] No route from 26,30 to 25,30! ---------------------------------------------- -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| X | -| E6 | -| X | -| X | -| X | -| X O | -| X X X | -| | -| X X X | -| X X | -| X X | -| X X | -| X X X | -| | -| X X X | -| X X | -| X X | -| X X | -| X | -| | -| | -| | -|--------------------------------------------- - -[MiningEnvironment] Cycle 291 finished in 5 ms, mean is 7. -[MiningEnvironment] Cycle 292 finished in 3 ms, mean is 7. -[MiningEnvironment] Cycle 293 finished in 4 ms, mean is 7. -[MiningEnvironment] Cycle 294 finished in 2 ms, mean is 7. -[miner3] Announcing gold(33,7) to others -[MiningEnvironment] Cycle 295 finished in 2 ms, mean is 7. -[miner3] Announcing gold(32,7) to others -[MiningEnvironment] Cycle 296 finished in 8 ms, mean is 7. -[MiningEnvironment] Cycle 297 finished in 2 ms, mean is 7. -[miner3] Announcing gold(30,7) to others -[MiningEnvironment] Cycle 298 finished in 4 ms, mean is 7. -[miner1] *** Start it all again! -[miner1] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 299 finished in 2 ms, mean is 7. -[MiningEnvironment] Cycle 300 finished in 3 ms, mean is 7. -[MiningEnvironment] Cycle 301 finished in 2 ms, mean is 7. -[dummy3] picked gold! -[MiningEnvironment] Cycle 302 finished in 2 ms, mean is 7. -[MiningEnvironment] Cycle 303 finished in 4 ms, mean is 7. -[miner5] All golds=[], evaluation=[] -[miner5] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 304 finished in 4 ms, mean is 7. -[MiningEnvironment] Cycle 305 finished in 3 ms, mean is 7. -[WorldModel] Agent 7 carried 3 golds to depot! -[MiningEnvironment] Cycle 306 finished in 2 ms, mean is 7. -[miner1] All golds=[], evaluation=[] -[miner1] New goal is find gold: quadrant -[MiningEnvironment] Cycle 307 finished in 3 ms, mean is 7. -[dummy3] picked gold! -[MiningEnvironment] Cycle 308 finished in 3 ms, mean is 7. -[MiningEnvironment] Cycle 309 finished in 3 ms, mean is 7. -[miner4] *** Start it all again! -[miner4] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 310 finished in 2 ms, mean is 7. -[MiningEnvironment] Cycle 311 finished in 4 ms, mean is 7. -[dummy1] in depot -[MiningEnvironment] Cycle 312 finished in 3 ms, mean is 7. -[WorldModel] Agent 1 carried 3 golds to depot! -[MiningEnvironment] Cycle 313 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 314 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 315 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 316 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 317 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 318 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 319 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 320 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 321 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 322 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 323 finished in 5 ms, mean is 6. -[miner2] in Q4 to 25x0 -[MiningEnvironment] Cycle 324 finished in 3 ms, mean is 6. -[miner3] *** Start it all again! -[miner3] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 325 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 326 finished in 6 ms, mean is 6. -[miner4] *** Start it all again! -[miner4] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 327 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 328 finished in 6 ms, mean is 6. -[MiningEnvironment] Cycle 329 finished in 5 ms, mean is 6. -[MiningEnvironment] Cycle 330 finished in 4 ms, mean is 6. -[dummy5] picked gold! -[MiningEnvironment] Cycle 331 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 332 finished in 3 ms, mean is 6. -[dummy4] picked gold! -[MiningEnvironment] Cycle 333 finished in 5 ms, mean is 6. -[MiningEnvironment] Cycle 334 finished in 5 ms, mean is 6. -[MiningEnvironment] Cycle 335 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 336 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 337 finished in 5 ms, mean is 6. -[MiningEnvironment] Cycle 338 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 339 finished in 5 ms, mean is 6. -[WorldModel] Agent 10 carried 3 golds to depot! -[MiningEnvironment] Cycle 340 finished in 4 ms, mean is 6. -[miner4] All golds=[], evaluation=[] -[miner4] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 341 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 342 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 343 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 344 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 345 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 346 finished in 5 ms, mean is 6. -[MiningEnvironment] Cycle 347 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 348 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 349 finished in 5 ms, mean is 6. -[MiningEnvironment] Cycle 350 finished in 5 ms, mean is 6. -[dummy6] in depot -[MiningEnvironment] Cycle 351 finished in 4 ms, mean is 6. -[WorldModel] Agent 6 carried 3 golds to depot! -[MiningEnvironment] Cycle 352 finished in 5 ms, mean is 6. -[MiningEnvironment] Cycle 353 finished in 4 ms, mean is 6. -[miner6] Gold perceived: gold(18,9) -[miner6] All golds=[gold(18,9)], evaluation=[d(6,gold(18,9),not_committed)] -[miner6] Gold options are [d(6,gold(18,9),not_committed)]. Next gold is gold(18,9) -[miner6] Dropping search_gold desires and intentions to handle gold -[miner6] Handling gold(18,9) now. -[MiningEnvironment] Cycle 354 finished in 5 ms, mean is 6. -[dummy1] picked gold! -[MiningEnvironment] Cycle 355 finished in 13 ms, mean is 6. -[MiningEnvironment] Cycle 356 finished in 13 ms, mean is 6. -[dummy1] picked gold! -[MiningEnvironment] Cycle 357 finished in 2 ms, mean is 6. -[miner2] Gold perceived: gold(43,7) -[miner2] All golds=[gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(41,9),gold(42,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(2,gold(43,7),not_committed),d(14,gold(30,7),not_committed),d(12,gold(32,7),not_committed),d(11,gold(33,7),not_committed),d(12,gold(33,10),not_committed),d(8,gold(35,9),not_committed),d(6,gold(37,9),not_committed),d(5,gold(38,9),not_committed),d(2,gold(41,9),committed_by(miner3,at(29,31),far(34))),d(1,gold(42,9),not_committed),d(69,gold(19,48),not_committed),d(74,gold(14,48),not_committed),d(8,gold(36,10),not_committed),d(11,gold(35,11),not_committed)] -[miner2] Gold options are [d(2,gold(43,7),not_committed),d(14,gold(30,7),not_committed),d(12,gold(32,7),not_committed),d(11,gold(33,7),not_committed),d(12,gold(33,10),not_committed),d(8,gold(35,9),not_committed),d(6,gold(37,9),not_committed),d(5,gold(38,9),not_committed),d(2,gold(41,9),committed_by(miner3,at(29,31),far(34))),d(1,gold(42,9),not_committed),d(69,gold(19,48),not_committed),d(74,gold(14,48),not_committed),d(8,gold(36,10),not_committed),d(11,gold(35,11),not_committed)]. Next gold is gold(42,9) -[miner2] Dropping around(_,_) desires and intentions to handle gold -[miner2] Handling gold(42,9) now. -[MiningEnvironment] Cycle 358 finished in 17 ms, mean is 6. -[miner1] Gold perceived: gold(5,13) -[miner1] All golds=[gold(5,13)], evaluation=[d(2,gold(5,13),not_committed)] -[miner2] Picked gold(42,9), I have 0 pieces of gold -[miner1] Gold options are [d(2,gold(5,13),not_committed)]. Next gold is gold(5,13) -[miner1] Dropping around(_,_) desires and intentions to handle gold -[miner1] Gold perceived: gold(6,13) -[miner1] All golds=[gold(6,13),gold(5,13)], evaluation=[d(1,gold(6,13),not_committed),d(2,gold(5,13),not_committed)] -[miner1] Gold options are [d(1,gold(6,13),not_committed),d(2,gold(5,13),not_committed)]. Next gold is gold(6,13) -[miner1] Handling gold(6,13) now. -[miner2] All golds=[gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(41,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(3,gold(43,7),not_committed),d(15,gold(30,7),not_committed),d(13,gold(32,7),not_committed),d(12,gold(33,7),not_committed),d(11,gold(33,10),not_committed),d(7,gold(35,9),not_committed),d(5,gold(37,9),not_committed),d(4,gold(38,9),not_committed),d(1,gold(41,9),committed_by(miner3,at(29,31),far(34))),d(68,gold(19,48),not_committed),d(73,gold(14,48),not_committed),d(7,gold(36,10),not_committed),d(9,gold(35,11),not_committed)] -[miner2] Gold options are [d(3,gold(43,7),not_committed),d(15,gold(30,7),not_committed),d(13,gold(32,7),not_committed),d(12,gold(33,7),not_committed),d(11,gold(33,10),not_committed),d(7,gold(35,9),not_committed),d(5,gold(37,9),not_committed),d(4,gold(38,9),not_committed),d(1,gold(41,9),committed_by(miner3,at(29,31),far(34))),d(68,gold(19,48),not_committed),d(73,gold(14,48),not_committed),d(7,gold(36,10),not_committed),d(9,gold(35,11),not_committed)]. Next gold is gold(41,9) -[miner2] Handling gold(41,9) now. -[MiningEnvironment] Cycle 359 finished in 8 ms, mean is 6. -[miner2] Gold perceived: gold(42,9) -[miner1] Gold perceived: gold(7,12) -[miner3] *** Start it all again! -[miner3] Going to depot to deliver 3 golds. -[miner1] All golds=[gold(7,12),gold(6,13),gold(5,13)], evaluation=[d(2,gold(7,12),not_committed),d(0,gold(6,13),in_my_place),d(1,gold(5,13),not_committed)] -[miner1] Gold options are [d(2,gold(7,12),not_committed),d(0,gold(6,13),in_my_place),d(1,gold(5,13),not_committed)]. Next gold is gold(6,13) -[miner2] All golds=[gold(42,9),gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(41,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(1,gold(42,9),not_committed),d(4,gold(43,7),not_committed),d(14,gold(30,7),not_committed),d(12,gold(32,7),not_committed),d(11,gold(33,7),not_committed),d(9,gold(33,10),not_committed),d(6,gold(35,9),not_committed),d(4,gold(37,9),not_committed),d(3,gold(38,9),not_committed),d(0,gold(41,9),in_my_place),d(67,gold(19,48),not_committed),d(72,gold(14,48),not_committed),d(6,gold(36,10),not_committed),d(8,gold(35,11),not_committed)] -[miner2] Gold options are [d(1,gold(42,9),not_committed),d(4,gold(43,7),not_committed),d(14,gold(30,7),not_committed),d(12,gold(32,7),not_committed),d(11,gold(33,7),not_committed),d(9,gold(33,10),not_committed),d(6,gold(35,9),not_committed),d(4,gold(37,9),not_committed),d(3,gold(38,9),not_committed),d(0,gold(41,9),in_my_place),d(67,gold(19,48),not_committed),d(72,gold(14,48),not_committed),d(6,gold(36,10),not_committed),d(8,gold(35,11),not_committed)]. Next gold is gold(41,9) -[MiningEnvironment] Cycle 360 finished in 7 ms, mean is 6. -[miner1] Picked gold(6,13), I have 1 pieces of gold -[miner2] Picked gold(41,9), I have 1 pieces of gold -[miner1] All golds=[gold(7,12),gold(5,13)], evaluation=[d(2,gold(7,12),not_committed),d(1,gold(5,13),not_committed)] -[miner1] Gold options are [d(2,gold(7,12),not_committed),d(1,gold(5,13),not_committed)]. Next gold is gold(5,13) -[miner1] Handling gold(5,13) now. -[miner2] All golds=[gold(42,9),gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(1,gold(42,9),not_committed),d(4,gold(43,7),not_committed),d(16,gold(30,7),not_committed),d(13,gold(32,7),not_committed),d(12,gold(33,7),not_committed),d(11,gold(33,10),not_committed),d(7,gold(35,9),not_committed),d(4,gold(37,9),not_committed),d(3,gold(38,9),not_committed),d(75,gold(19,48),not_committed),d(81,gold(14,48),not_committed),d(7,gold(36,10),not_committed),d(9,gold(35,11),not_committed)] -[miner2] Gold options are [d(1,gold(42,9),not_committed),d(4,gold(43,7),not_committed),d(16,gold(30,7),not_committed),d(13,gold(32,7),not_committed),d(12,gold(33,7),not_committed),d(11,gold(33,10),not_committed),d(7,gold(35,9),not_committed),d(4,gold(37,9),not_committed),d(3,gold(38,9),not_committed),d(75,gold(19,48),not_committed),d(81,gold(14,48),not_committed),d(7,gold(36,10),not_committed),d(9,gold(35,11),not_committed)]. Next gold is gold(42,9) -[miner2] Handling gold(42,9) now. -[MiningEnvironment] Cycle 361 finished in 9 ms, mean is 6. -[miner6] Picked gold(18,9), I have 1 pieces of gold -[miner6] All golds=[], evaluation=[] -[miner6] Going to depot to deliver 1 golds. -[MiningEnvironment] Cycle 362 finished in 3 ms, mean is 6. -[miner2] Picked gold(42,9), I have 1 pieces of gold -[miner2] All golds=[gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(3,gold(43,7),not_committed),d(17,gold(30,7),not_committed),d(14,gold(32,7),not_committed),d(13,gold(33,7),not_committed),d(12,gold(33,10),not_committed),d(8,gold(35,9),not_committed),d(6,gold(37,9),not_committed),d(4,gold(38,9),not_committed),d(76,gold(19,48),not_committed),d(82,gold(14,48),not_committed),d(8,gold(36,10),not_committed),d(11,gold(35,11),not_committed)] -[miner2] Gold options are [d(3,gold(43,7),not_committed),d(17,gold(30,7),not_committed),d(14,gold(32,7),not_committed),d(13,gold(33,7),not_committed),d(12,gold(33,10),not_committed),d(8,gold(35,9),not_committed),d(6,gold(37,9),not_committed),d(4,gold(38,9),not_committed),d(76,gold(19,48),not_committed),d(82,gold(14,48),not_committed),d(8,gold(36,10),not_committed),d(11,gold(35,11),not_committed)]. Next gold is gold(43,7) -[miner2] Handling gold(43,7) now. -[MiningEnvironment] Cycle 363 finished in 8 ms, mean is 6. -[miner2] Gold perceived: gold(42,9) -[miner2] All golds=[gold(42,9),gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(1,gold(42,9),not_committed),d(2,gold(43,7),not_committed),d(18,gold(30,7),not_committed),d(16,gold(32,7),not_committed),d(14,gold(33,7),not_committed),d(13,gold(33,10),not_committed),d(9,gold(35,9),not_committed),d(7,gold(37,9),not_committed),d(6,gold(38,9),not_committed),d(77,gold(19,48),not_committed),d(83,gold(14,48),not_committed),d(9,gold(36,10),not_committed),d(12,gold(35,11),not_committed)] -[miner2] Gold options are [d(1,gold(42,9),not_committed),d(2,gold(43,7),not_committed),d(18,gold(30,7),not_committed),d(16,gold(32,7),not_committed),d(14,gold(33,7),not_committed),d(13,gold(33,10),not_committed),d(9,gold(35,9),not_committed),d(7,gold(37,9),not_committed),d(6,gold(38,9),not_committed),d(77,gold(19,48),not_committed),d(83,gold(14,48),not_committed),d(9,gold(36,10),not_committed),d(12,gold(35,11),not_committed)]. Next gold is gold(42,9) -[miner2] Handling gold(42,9) now. -[MiningEnvironment] Cycle 364 finished in 11 ms, mean is 6. -[miner1] Picked gold(5,13), I have 2 pieces of gold -[miner1] All golds=[gold(7,12)], evaluation=[d(4,gold(7,12),not_committed)] -[miner1] Gold options are [d(4,gold(7,12),not_committed)]. Next gold is gold(7,12) -[miner1] Handling gold(7,12) now. -[MiningEnvironment] Cycle 365 finished in 3 ms, mean is 6. -[WorldModel] Agent 9 carried 3 golds to depot! -[MiningEnvironment] Cycle 366 finished in 3 ms, mean is 6. -[miner3] All golds=[], evaluation=[] -[miner3] New goal is find gold: quadrant -[miner2] Picked gold(42,9), I have 2 pieces of gold -[miner2] All golds=[gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(4,gold(43,7),not_committed),d(19,gold(30,7),not_committed),d(16,gold(32,7),not_committed),d(15,gold(33,7),not_committed),d(13,gold(33,10),not_committed),d(9,gold(35,9),not_committed),d(6,gold(37,9),not_committed),d(5,gold(38,9),not_committed),d(84,gold(19,48),not_committed),d(91,gold(14,48),not_committed),d(9,gold(36,10),not_committed),d(12,gold(35,11),not_committed)] -[miner2] Gold options are [d(4,gold(43,7),not_committed),d(19,gold(30,7),not_committed),d(16,gold(32,7),not_committed),d(15,gold(33,7),not_committed),d(13,gold(33,10),not_committed),d(9,gold(35,9),not_committed),d(6,gold(37,9),not_committed),d(5,gold(38,9),not_committed),d(84,gold(19,48),not_committed),d(91,gold(14,48),not_committed),d(9,gold(36,10),not_committed),d(12,gold(35,11),not_committed)]. Next gold is gold(43,7) -[miner2] Handling gold(43,7) now. -[MiningEnvironment] Cycle 367 finished in 8 ms, mean is 6. -[miner6] Gold perceived: gold(15,11) -[miner1] Gold perceived: gold(8,13) -[miner6] All golds=[gold(15,11)], evaluation=[d(0,gold(15,11),in_my_place)] -[miner1] All golds=[gold(8,13),gold(7,12)], evaluation=[d(2,gold(8,13),not_committed),d(0,gold(7,12),in_my_place)] -[miner6] Gold options are [d(0,gold(15,11),in_my_place)]. Next gold is gold(15,11) -[dummy1] picked gold! -[miner1] Gold options are [d(2,gold(8,13),not_committed),d(0,gold(7,12),in_my_place)]. Next gold is gold(7,12) -[miner6] Handling gold(15,11) now. -[miner1] Picked gold(7,12), I have 2 pieces of gold -[miner1] All golds=[gold(8,13)], evaluation=[d(2,gold(8,13),not_committed)] -[miner1] Gold options are [d(2,gold(8,13),not_committed)]. Next gold is gold(8,13) -[miner1] Handling gold(8,13) now. -[MiningEnvironment] Cycle 368 finished in 4 ms, mean is 6. -[miner6] Picked gold(15,11), I have 2 pieces of gold -[miner6] All golds=[], evaluation=[] -[miner6] Going to depot to deliver 2 golds. -[dummy1] picked gold! -[MiningEnvironment] Cycle 369 finished in 7 ms, mean is 6. -[miner1] Gold perceived: gold(7,11) -[miner1] All golds=[gold(7,11),gold(8,13)], evaluation=[d(2,gold(7,11),not_committed),d(1,gold(8,13),not_committed)] -[miner1] Gold options are [d(2,gold(7,11),not_committed),d(1,gold(8,13),not_committed)]. Next gold is gold(8,13) -[miner1] Gold perceived: gold(7,12) -[miner1] All golds=[gold(7,12),gold(7,11),gold(8,13)], evaluation=[d(1,gold(7,12),not_committed),d(2,gold(7,11),not_committed),d(1,gold(8,13),not_committed)] -[miner1] Gold options are [d(1,gold(7,12),not_committed),d(2,gold(7,11),not_committed),d(1,gold(8,13),not_committed)]. Next gold is gold(7,12) -[miner1] Gold perceived: gold(8,11) -[miner1] All golds=[gold(8,11),gold(7,12),gold(7,11),gold(8,13)], evaluation=[d(1,gold(8,11),not_committed),d(1,gold(7,12),not_committed),d(2,gold(7,11),not_committed),d(1,gold(8,13),not_committed)] -[miner1] Gold options are [d(1,gold(8,11),not_committed),d(1,gold(7,12),not_committed),d(2,gold(7,11),not_committed),d(1,gold(8,13),not_committed)]. Next gold is gold(7,12) -[miner1] Gold perceived: gold(9,11) -[miner1] All golds=[gold(9,11),gold(8,11),gold(7,12),gold(7,11),gold(8,13)], evaluation=[d(2,gold(9,11),not_committed),d(1,gold(8,11),not_committed),d(1,gold(7,12),not_committed),d(2,gold(7,11),not_committed),d(1,gold(8,13),not_committed)] -[miner1] Gold options are [d(2,gold(9,11),not_committed),d(1,gold(8,11),not_committed),d(1,gold(7,12),not_committed),d(2,gold(7,11),not_committed),d(1,gold(8,13),not_committed)]. Next gold is gold(7,12) -[miner1] Handling gold(7,12) now. -[MiningEnvironment] Cycle 370 finished in 9 ms, mean is 6. -[miner6] Gold perceived: gold(13,11) -[miner6] All golds=[gold(13,11)], evaluation=[d(2,gold(13,11),not_committed)] -[miner6] Gold options are [d(2,gold(13,11),not_committed)]. Next gold is gold(13,11) -[miner1] Picked gold(7,12), I have 2 pieces of gold -[miner6] Handling gold(13,11) now. -[miner1] All golds=[gold(9,11),gold(8,11),gold(7,11),gold(8,13)], evaluation=[d(4,gold(9,11),not_committed),d(2,gold(8,11),not_committed),d(1,gold(7,11),not_committed),d(2,gold(8,13),not_committed)] -[miner1] Gold options are [d(4,gold(9,11),not_committed),d(2,gold(8,11),not_committed),d(1,gold(7,11),not_committed),d(2,gold(8,13),not_committed)]. Next gold is gold(7,11) -[miner1] Handling gold(7,11) now. -[miner2] Gold perceived: gold(41,7) -[miner2] All golds=[gold(41,7),gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(1,gold(41,7),not_committed),d(1,gold(43,7),not_committed),d(16,gold(30,7),not_committed),d(13,gold(32,7),not_committed),d(12,gold(33,7),not_committed),d(16,gold(33,10),not_committed),d(12,gold(35,9),not_committed),d(9,gold(37,9),not_committed),d(8,gold(38,9),not_committed),d(87,gold(19,48),not_committed),d(94,gold(14,48),not_committed),d(12,gold(36,10),not_committed),d(15,gold(35,11),not_committed)] -[miner2] Gold options are [d(1,gold(41,7),not_committed),d(1,gold(43,7),not_committed),d(16,gold(30,7),not_committed),d(13,gold(32,7),not_committed),d(12,gold(33,7),not_committed),d(16,gold(33,10),not_committed),d(12,gold(35,9),not_committed),d(9,gold(37,9),not_committed),d(8,gold(38,9),not_committed),d(87,gold(19,48),not_committed),d(94,gold(14,48),not_committed),d(12,gold(36,10),not_committed),d(15,gold(35,11),not_committed)]. Next gold is gold(41,7) -[miner2] Handling gold(41,7) now. -[MiningEnvironment] Cycle 371 finished in 10 ms, mean is 6. -[MiningEnvironment] Cycle 372 finished in 2 ms, mean is 6. -[miner1] Gold perceived: gold(7,12) -[miner1] All golds=[gold(7,12),gold(9,11),gold(8,11),gold(7,11),gold(8,13)], evaluation=[d(0,gold(7,12),in_my_place),d(4,gold(9,11),not_committed),d(2,gold(8,11),not_committed),d(1,gold(7,11),not_committed),d(2,gold(8,13),not_committed)] -[miner1] Gold options are [d(0,gold(7,12),in_my_place),d(4,gold(9,11),not_committed),d(2,gold(8,11),not_committed),d(1,gold(7,11),not_committed),d(2,gold(8,13),not_committed)]. Next gold is gold(7,12) -[miner2] Picked gold(41,7), I have 2 pieces of gold -[miner1] Handling gold(7,12) now. -[miner2] All golds=[gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(2,gold(43,7),not_committed),d(15,gold(30,7),not_committed),d(12,gold(32,7),not_committed),d(10,gold(33,7),not_committed),d(15,gold(33,10),not_committed),d(10,gold(35,9),not_committed),d(8,gold(37,9),not_committed),d(6,gold(38,9),not_committed),d(86,gold(19,48),not_committed),d(92,gold(14,48),not_committed),d(10,gold(36,10),not_committed),d(13,gold(35,11),not_committed)] -[miner2] Gold options are [d(2,gold(43,7),not_committed),d(15,gold(30,7),not_committed),d(12,gold(32,7),not_committed),d(10,gold(33,7),not_committed),d(15,gold(33,10),not_committed),d(10,gold(35,9),not_committed),d(8,gold(37,9),not_committed),d(6,gold(38,9),not_committed),d(86,gold(19,48),not_committed),d(92,gold(14,48),not_committed),d(10,gold(36,10),not_committed),d(13,gold(35,11),not_committed)]. Next gold is gold(43,7) -[miner2] Handling gold(43,7) now. -[MiningEnvironment] Cycle 373 finished in 9 ms, mean is 6. -[miner6] Picked gold(13,11), I have 2 pieces of gold -[miner6] All golds=[], evaluation=[] -[miner6] Going to depot to deliver 2 golds. -[miner2] Gold perceived: gold(41,7) -[miner2] All golds=[gold(41,7),gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(1,gold(41,7),not_committed),d(1,gold(43,7),not_committed),d(16,gold(30,7),not_committed),d(13,gold(32,7),not_committed),d(12,gold(33,7),not_committed),d(16,gold(33,10),not_committed),d(12,gold(35,9),not_committed),d(9,gold(37,9),not_committed),d(8,gold(38,9),not_committed),d(87,gold(19,48),not_committed),d(94,gold(14,48),not_committed),d(12,gold(36,10),not_committed),d(15,gold(35,11),not_committed)] -[miner2] Gold options are [d(1,gold(41,7),not_committed),d(1,gold(43,7),not_committed),d(16,gold(30,7),not_committed),d(13,gold(32,7),not_committed),d(12,gold(33,7),not_committed),d(16,gold(33,10),not_committed),d(12,gold(35,9),not_committed),d(9,gold(37,9),not_committed),d(8,gold(38,9),not_committed),d(87,gold(19,48),not_committed),d(94,gold(14,48),not_committed),d(12,gold(36,10),not_committed),d(15,gold(35,11),not_committed)]. Next gold is gold(41,7) -[miner2] Handling gold(41,7) now. -[MiningEnvironment] Cycle 374 finished in 11 ms, mean is 6. -[miner1] Picked gold(7,12), I have 3 pieces of gold -[miner1] Going to depot to deliver 3 golds. -[miner1] Announcing gold(9,11), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] Announcing gold(8,11), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] Announcing gold(7,11), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] Announcing gold(8,13), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 375 finished in 28 ms, mean is 6. -[miner6] Gold perceived: gold(13,11) -[miner6] All golds=[gold(13,11)], evaluation=[d(1,gold(13,11),not_committed)] -[miner6] Gold options are [d(1,gold(13,11),not_committed)]. Next gold is gold(13,11) -[miner1] *** Start it all again! -[miner6] Handling gold(13,11) now. -[miner1] Going to depot to deliver 3 golds. -[miner2] Picked gold(41,7), I have 2 pieces of gold -[miner2] All golds=[gold(8,13),gold(7,11),gold(8,11),gold(9,11),gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(50,gold(8,11),not_committed),d(49,gold(9,11),not_committed),d(2,gold(43,7),not_committed),d(15,gold(30,7),not_committed),d(12,gold(32,7),not_committed),d(10,gold(33,7),not_committed),d(15,gold(33,10),not_committed),d(10,gold(35,9),not_committed),d(8,gold(37,9),not_committed),d(6,gold(38,9),not_committed),d(86,gold(19,48),not_committed),d(92,gold(14,48),not_committed),d(10,gold(36,10),not_committed),d(13,gold(35,11),not_committed)] -[miner2] Gold options are [d(50,gold(8,11),not_committed),d(49,gold(9,11),not_committed),d(2,gold(43,7),not_committed),d(15,gold(30,7),not_committed),d(12,gold(32,7),not_committed),d(10,gold(33,7),not_committed),d(15,gold(33,10),not_committed),d(10,gold(35,9),not_committed),d(8,gold(37,9),not_committed),d(6,gold(38,9),not_committed),d(86,gold(19,48),not_committed),d(92,gold(14,48),not_committed),d(10,gold(36,10),not_committed),d(13,gold(35,11),not_committed)]. Next gold is gold(43,7) -[miner2] Handling gold(43,7) now. -[MiningEnvironment] Cycle 376 finished in 9 ms, mean is 6. -[miner1] Announcing gold(7,11) to others -[miner1] Announcing gold(8,11) to others -[miner2] Gold perceived: gold(41,7) -[miner2] All golds=[gold(41,7),gold(8,13),gold(7,11),gold(8,11),gold(9,11),gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(1,gold(41,7),not_committed),d(51,gold(8,11),not_committed),d(50,gold(9,11),not_committed),d(1,gold(43,7),not_committed),d(16,gold(30,7),not_committed),d(13,gold(32,7),not_committed),d(12,gold(33,7),not_committed),d(16,gold(33,10),not_committed),d(12,gold(35,9),not_committed),d(9,gold(37,9),not_committed),d(8,gold(38,9),not_committed),d(87,gold(19,48),not_committed),d(94,gold(14,48),not_committed),d(12,gold(36,10),not_committed),d(15,gold(35,11),not_committed)] -[miner2] Gold options are [d(1,gold(41,7),not_committed),d(51,gold(8,11),not_committed),d(50,gold(9,11),not_committed),d(1,gold(43,7),not_committed),d(16,gold(30,7),not_committed),d(13,gold(32,7),not_committed),d(12,gold(33,7),not_committed),d(16,gold(33,10),not_committed),d(12,gold(35,9),not_committed),d(9,gold(37,9),not_committed),d(8,gold(38,9),not_committed),d(87,gold(19,48),not_committed),d(94,gold(14,48),not_committed),d(12,gold(36,10),not_committed),d(15,gold(35,11),not_committed)]. Next gold is gold(41,7) -[miner2] Handling gold(41,7) now. -[MiningEnvironment] Cycle 377 finished in 13 ms, mean is 6. -[miner1] Announcing gold(9,13) to others -[miner2] Picked gold(41,7), I have 2 pieces of gold -[miner2] All golds=[gold(9,13),gold(8,13),gold(7,11),gold(8,11),gold(9,11),gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(51,gold(9,13),not_committed),d(50,gold(8,11),not_committed),d(49,gold(9,11),not_committed),d(2,gold(43,7),not_committed),d(15,gold(30,7),not_committed),d(12,gold(32,7),not_committed),d(10,gold(33,7),not_committed),d(15,gold(33,10),not_committed),d(10,gold(35,9),not_committed),d(8,gold(37,9),not_committed),d(6,gold(38,9),not_committed),d(86,gold(19,48),not_committed),d(92,gold(14,48),not_committed),d(10,gold(36,10),not_committed),d(13,gold(35,11),not_committed)] -[miner2] Gold options are [d(51,gold(9,13),not_committed),d(50,gold(8,11),not_committed),d(49,gold(9,11),not_committed),d(2,gold(43,7),not_committed),d(15,gold(30,7),not_committed),d(12,gold(32,7),not_committed),d(10,gold(33,7),not_committed),d(15,gold(33,10),not_committed),d(10,gold(35,9),not_committed),d(8,gold(37,9),not_committed),d(6,gold(38,9),not_committed),d(86,gold(19,48),not_committed),d(92,gold(14,48),not_committed),d(10,gold(36,10),not_committed),d(13,gold(35,11),not_committed)]. Next gold is gold(43,7) -[miner2] Handling gold(43,7) now. -[MiningEnvironment] Cycle 378 finished in 16 ms, mean is 6. -[miner6] Picked gold(13,11), I have 2 pieces of gold -[miner6] All golds=[], evaluation=[] -[miner6] Going to depot to deliver 2 golds. -[miner1] Announcing gold(8,13) to others -[miner1] Announcing gold(9,11) to others -[MiningEnvironment] Cycle 379 finished in 4 ms, mean is 6. -[miner6] Gold perceived: gold(13,11) -[miner6] All golds=[gold(13,11)], evaluation=[d(0,gold(13,11),in_my_place)] -[miner1] Announcing gold(10,12) to others -[miner6] Gold options are [d(0,gold(13,11),in_my_place)]. Next gold is gold(13,11) -[miner6] Handling gold(13,11) now. -[miner2] Gold perceived: gold(44,6) -[miner2] All golds=[gold(44,6),gold(10,12),gold(9,13),gold(8,13),gold(7,11),gold(8,11),gold(9,11),gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(2,gold(44,6),not_committed),d(51,gold(10,12),not_committed),d(54,gold(9,13),not_committed),d(53,gold(8,11),not_committed),d(51,gold(9,11),not_committed),d(0,gold(43,7),in_my_place),d(17,gold(30,7),not_committed),d(15,gold(32,7),not_committed),d(13,gold(33,7),not_committed),d(17,gold(33,10),not_committed),d(13,gold(35,9),not_committed),d(10,gold(37,9),not_committed),d(9,gold(38,9),not_committed),d(88,gold(19,48),not_committed),d(95,gold(14,48),not_committed),d(13,gold(36,10),not_committed),d(16,gold(35,11),not_committed)] -[miner2] Gold options are [d(2,gold(44,6),not_committed),d(51,gold(10,12),not_committed),d(54,gold(9,13),not_committed),d(53,gold(8,11),not_committed),d(51,gold(9,11),not_committed),d(0,gold(43,7),in_my_place),d(17,gold(30,7),not_committed),d(15,gold(32,7),not_committed),d(13,gold(33,7),not_committed),d(17,gold(33,10),not_committed),d(13,gold(35,9),not_committed),d(10,gold(37,9),not_committed),d(9,gold(38,9),not_committed),d(88,gold(19,48),not_committed),d(95,gold(14,48),not_committed),d(13,gold(36,10),not_committed),d(16,gold(35,11),not_committed)]. Next gold is gold(43,7) -[MiningEnvironment] Cycle 380 finished in 17 ms, mean is 6. -[miner6] Picked gold(13,11), I have 3 pieces of gold -[miner6] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 381 finished in 6 ms, mean is 6. -[miner6] *** Start it all again! -[miner6] Going to depot to deliver 3 golds. -[miner2] Gold perceived: gold(44,7) -[miner2] All golds=[gold(44,7),gold(44,6),gold(10,12),gold(9,13),gold(8,13),gold(7,11),gold(8,11),gold(9,11),gold(43,7),gold(30,7),gold(32,7),gold(33,7),gold(33,10),gold(35,9),gold(37,9),gold(38,9),gold(19,48),gold(14,48),gold(36,10),gold(35,11)], evaluation=[d(1,gold(44,7),not_committed),d(2,gold(44,6),not_committed),d(51,gold(10,12),not_committed),d(54,gold(9,13),not_committed),d(53,gold(8,11),not_committed),d(51,gold(9,11),not_committed),d(0,gold(43,7),in_my_place),d(17,gold(30,7),not_committed),d(15,gold(32,7),not_committed),d(13,gold(33,7),not_committed),d(17,gold(33,10),not_committed),d(13,gold(35,9),not_committed),d(10,gold(37,9),not_committed),d(9,gold(38,9),not_committed),d(88,gold(19,48),not_committed),d(95,gold(14,48),not_committed),d(13,gold(36,10),not_committed),d(16,gold(35,11),not_committed)] -[miner2] Gold options are [d(1,gold(44,7),not_committed),d(2,gold(44,6),not_committed),d(51,gold(10,12),not_committed),d(54,gold(9,13),not_committed),d(53,gold(8,11),not_committed),d(51,gold(9,11),not_committed),d(0,gold(43,7),in_my_place),d(17,gold(30,7),not_committed),d(15,gold(32,7),not_committed),d(13,gold(33,7),not_committed),d(17,gold(33,10),not_committed),d(13,gold(35,9),not_committed),d(10,gold(37,9),not_committed),d(9,gold(38,9),not_committed),d(88,gold(19,48),not_committed),d(95,gold(14,48),not_committed),d(13,gold(36,10),not_committed),d(16,gold(35,11),not_committed)]. Next gold is gold(43,7) -[MiningEnvironment] Cycle 382 finished in 11 ms, mean is 6. -[miner2] Picked gold(43,7), I have 3 pieces of gold -[miner2] Going to depot to deliver 3 golds. -[miner2] Announcing gold(44,7), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner2] Announcing gold(44,6), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 383 finished in 6 ms, mean is 6. -[MiningEnvironment] Cycle 384 finished in 9 ms, mean is 6. -[miner2] *** Start it all again! -[miner2] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 385 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 386 finished in 8 ms, mean is 6. -[MiningEnvironment] Cycle 387 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 388 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 389 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 390 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 391 finished in 2 ms, mean is 6. -[miner2] Announcing gold(44,11) to others -[MiningEnvironment] Cycle 392 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 393 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 394 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 395 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 396 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 397 finished in 3 ms, mean is 6. -[miner3] in no Q, going to X1 -[MiningEnvironment] Cycle 398 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 399 finished in 2 ms, mean is 6. -[miner6] *** Start it all again! -[dummy6] picked gold! -[miner6] Going to depot to deliver 3 golds. -[miner3] in Q3 to 24x33 -[MiningEnvironment] Cycle 400 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 401 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 402 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 403 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 404 finished in 3 ms, mean is 6. -[miner2] *** Start it all again! -[miner2] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 405 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 406 finished in 4 ms, mean is 6. -[dummy6] picked gold! -[MiningEnvironment] Cycle 407 finished in 3 ms, mean is 6. -[dummy3] in depot -[MiningEnvironment] Cycle 408 finished in 3 ms, mean is 6. -[WorldModel] Agent 3 carried 3 golds to depot! -[MiningEnvironment] Cycle 409 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 410 finished in 3 ms, mean is 6. -[miner4] All golds=[], evaluation=[] -[miner4] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 411 finished in 3 ms, mean is 6. -[dummy4] in depot -[MiningEnvironment] Cycle 412 finished in 3 ms, mean is 6. -[WorldModel] Agent 4 carried 3 golds to depot! -[dummy6] picked gold! -[MiningEnvironment] Cycle 413 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 414 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 415 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 416 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 417 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 418 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 419 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 420 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 421 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 422 finished in 1 ms, mean is 6. -[MiningEnvironment] Cycle 423 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 424 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 425 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 426 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 427 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 428 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 429 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 430 finished in 1 ms, mean is 6. -[MiningEnvironment] Cycle 431 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 432 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 433 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 434 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 435 finished in 2 ms, mean is 6. -[miner3] in Q2 to 0x36 -[MiningEnvironment] Cycle 436 finished in 1 ms, mean is 6. -[miner4] Gold perceived: gold(10,7) -[miner4] All golds=[gold(10,7)], evaluation=[d(2,gold(10,7),not_committed)] -[miner4] Gold options are [d(2,gold(10,7),not_committed)]. Next gold is gold(10,7) -[miner4] Dropping search_gold desires and intentions to handle gold -[miner4] Handling gold(10,7) now. -[MiningEnvironment] Cycle 437 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 438 finished in 2 ms, mean is 6. -[miner4] Gold perceived: gold(9,7) -[miner4] All golds=[gold(9,7),gold(10,7)], evaluation=[d(1,gold(9,7),not_committed),d(0,gold(10,7),in_my_place)] -[miner4] Gold options are [d(1,gold(9,7),not_committed),d(0,gold(10,7),in_my_place)]. Next gold is gold(10,7) -[MiningEnvironment] Cycle 439 finished in 2 ms, mean is 6. -[miner4] Gold perceived: gold(11,6) -[miner4] All golds=[gold(11,6),gold(9,7),gold(10,7)], evaluation=[d(2,gold(11,6),not_committed),d(1,gold(9,7),not_committed),d(0,gold(10,7),in_my_place)] -[miner4] Gold options are [d(2,gold(11,6),not_committed),d(1,gold(9,7),not_committed),d(0,gold(10,7),in_my_place)]. Next gold is gold(10,7) -[miner4] Picked gold(10,7), I have 1 pieces of gold -[miner4] All golds=[gold(11,6),gold(9,7)], evaluation=[d(2,gold(11,6),not_committed),d(1,gold(9,7),not_committed)] -[miner4] Gold options are [d(2,gold(11,6),not_committed),d(1,gold(9,7),not_committed)]. Next gold is gold(9,7) -[miner4] Handling gold(9,7) now. -[MiningEnvironment] Cycle 440 finished in 6 ms, mean is 6. -[miner4] Gold perceived: gold(8,7) -[miner4] All golds=[gold(8,7),gold(11,6),gold(9,7)], evaluation=[d(1,gold(8,7),not_committed),d(3,gold(11,6),not_committed),d(0,gold(9,7),in_my_place)] -[miner4] Gold options are [d(1,gold(8,7),not_committed),d(3,gold(11,6),not_committed),d(0,gold(9,7),in_my_place)]. Next gold is gold(9,7) -[MiningEnvironment] Cycle 441 finished in 3 ms, mean is 6. -[miner4] Picked gold(9,7), I have 2 pieces of gold -[dummy1] in depot -[miner4] All golds=[gold(8,7),gold(11,6)], evaluation=[d(1,gold(8,7),not_committed),d(4,gold(11,6),not_committed)] -[miner4] Gold options are [d(1,gold(8,7),not_committed),d(4,gold(11,6),not_committed)]. Next gold is gold(8,7) -[miner4] Handling gold(8,7) now. -[MiningEnvironment] Cycle 442 finished in 4 ms, mean is 6. -[WorldModel] Agent 1 carried 3 golds to depot! -[miner4] Gold perceived: gold(7,7) -[miner4] All golds=[gold(7,7),gold(8,7),gold(11,6)], evaluation=[d(1,gold(7,7),not_committed),d(0,gold(8,7),in_my_place),d(5,gold(11,6),not_committed)] -[miner4] Gold options are [d(1,gold(7,7),not_committed),d(0,gold(8,7),in_my_place),d(5,gold(11,6),not_committed)]. Next gold is gold(8,7) -[MiningEnvironment] Cycle 443 finished in 2 ms, mean is 6. -[miner4] Picked gold(8,7), I have 3 pieces of gold -[miner4] Going to depot to deliver 3 golds. -[miner4] Announcing gold(7,7), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner4] Announcing gold(11,6), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 444 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 445 finished in 6 ms, mean is 6. -[MiningEnvironment] Cycle 446 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 447 finished in 3 ms, mean is 6. -[WorldModel] Agent 7 carried 3 golds to depot! -[MiningEnvironment] Cycle 448 finished in 2 ms, mean is 6. -[miner1] All golds=[gold(11,6),gold(7,7),gold(44,11),gold(44,6),gold(44,7),gold(10,12),gold(9,11),gold(8,13),gold(9,13),gold(8,11),gold(7,11)], evaluation=[d(51,gold(11,6),not_committed),d(55,gold(7,7),not_committed),d(40,gold(44,11),not_committed),d(46,gold(44,6),not_committed),d(45,gold(44,7),not_committed),d(46,gold(10,12),not_committed),d(48,gold(9,11),not_committed),d(47,gold(8,13),not_committed),d(46,gold(9,13),not_committed),d(49,gold(8,11),not_committed),d(50,gold(7,11),not_committed)] -[miner1] Gold options are [d(51,gold(11,6),not_committed),d(55,gold(7,7),not_committed),d(40,gold(44,11),not_committed),d(46,gold(44,6),not_committed),d(45,gold(44,7),not_committed),d(46,gold(10,12),not_committed),d(48,gold(9,11),not_committed),d(47,gold(8,13),not_committed),d(46,gold(9,13),not_committed),d(49,gold(8,11),not_committed),d(50,gold(7,11),not_committed)]. Next gold is gold(44,11) -[miner1] Handling gold(44,11) now. -[MiningEnvironment] Cycle 449 finished in 14 ms, mean is 6. -[MiningEnvironment] Cycle 450 finished in 7 ms, mean is 6. -[dummy2] No route from 10,36 to 11,36! ---------------------------------------------- -| | -| | -| | -| X XXXXX XXXX | -| | -| | -| X | -| X | -| 4 | -| X X | -| X X | -| X X X | -| X X X | -| X X X X | -| | -| X X X 3 X | -| X X X X | -| X X X X | -| X X X X | -| X X 6 X X | -| | -| X X | -| X X | -| X X | -| X X | -| X X | -| X X | -| X | -| X X | -| X X | -| | -| X X 1 X | -| X X X | -| X X | -| X X O | -| X X | -| 2E 5 | -| X X | -| X X | -| X X | -| X X | -| X X | -| | -| X X | -| X | -| X | -| X | -| XXXXX XX | -| | -| | -| | -|--------------------------------------------- - -[MiningEnvironment] Cycle 451 finished in 7 ms, mean is 6. -[MiningEnvironment] Cycle 452 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 453 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 454 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 455 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 456 finished in 2 ms, mean is 6. -[dummy3] picked gold! -[MiningEnvironment] Cycle 457 finished in 2 ms, mean is 6. -[dummy4] picked gold! -[MiningEnvironment] Cycle 458 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 459 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 460 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 461 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 462 finished in 2 ms, mean is 6. -[dummy4] picked gold! -[MiningEnvironment] Cycle 463 finished in 2 ms, mean is 6. -[miner3] in Q3 to 24x39 -[miner2] No route from 29,35 to 29,34! ---------------------------------------------- -| | -| | -| | -| X | -| X X | -| X | -| | -| X X | -| | -| X X | -| X X | -| X X | -| 4 X X X | -| X X X | -| | -| X X X | -| X X X X | -| X X X X | -| X X X X | -| X X X X | -| | -| X X | -| X X | -| X X | -| X X | -| X X | -| X X | -| X X | -| X 1 X5 | -| X X | -| | -| X X X | -| X X X | -| X X X | -| X X O X | -| X X 2 X | -| 3 | -| X X X | -| X X X | -| X X X | -| X X X | -| X X X | -| | -| X X X | -| X X | -| X X | -| X X | -| X XX X | -| | -| | -| | -|--------------------------------------------- - -[MiningEnvironment] Cycle 464 finished in 6 ms, mean is 6. -[MiningEnvironment] agent miner2 skips! -[WorldModel] Agent 12 carried 3 golds to depot! -[MiningEnvironment] Cycle 465 finished in 2 ms, mean is 6. -[miner6] All golds=[], evaluation=[] -[miner6] New goal is find gold: near_unvisited -[miner3] Gold perceived: gold(0,39) -[miner3] All golds=[gold(0,39),gold(11,6),gold(7,7),gold(44,11),gold(44,6),gold(44,7),gold(10,12),gold(9,13),gold(8,13),gold(7,11),gold(8,11),gold(9,11)], evaluation=[d(2,gold(0,39),not_committed),d(46,gold(11,6),not_committed),d(40,gold(7,7),not_committed),d(82,gold(44,6),not_committed),d(81,gold(44,7),not_committed),d(38,gold(10,12),not_committed),d(36,gold(9,13),not_committed),d(35,gold(8,13),committed_by(miner1,at(38,28),far(45))),d(36,gold(7,11),committed_by(miner1,at(38,28),far(48))),d(37,gold(8,11),not_committed),d(38,gold(9,11),not_committed)] -[miner3] Gold options are [d(2,gold(0,39),not_committed),d(46,gold(11,6),not_committed),d(40,gold(7,7),not_committed),d(82,gold(44,6),not_committed),d(81,gold(44,7),not_committed),d(38,gold(10,12),not_committed),d(36,gold(9,13),not_committed),d(35,gold(8,13),committed_by(miner1,at(38,28),far(45))),d(36,gold(7,11),committed_by(miner1,at(38,28),far(48))),d(37,gold(8,11),not_committed),d(38,gold(9,11),not_committed)]. Next gold is gold(0,39) -[miner3] Dropping around(_,_) desires and intentions to handle gold -[miner3] Handling gold(0,39) now. -[MiningEnvironment] Cycle 466 finished in 9 ms, mean is 6. -[WorldModel] Agent 8 carried 3 golds to depot! -[MiningEnvironment] Cycle 467 finished in 1 ms, mean is 6. -[miner3] Gold perceived: gold(0,40) -[miner2] All golds=[gold(11,6),gold(7,7)], evaluation=[d(51,gold(11,6),not_committed),d(55,gold(7,7),not_committed)] -[miner2] Gold options are [d(51,gold(11,6),not_committed),d(55,gold(7,7),not_committed)]. Next gold is gold(11,6) -[miner2] Handling gold(11,6) now. -[miner3] All golds=[gold(0,40),gold(0,39),gold(11,6),gold(7,7),gold(44,11),gold(44,6),gold(44,7),gold(10,12),gold(9,13),gold(8,13),gold(7,11),gold(8,11),gold(9,11)], evaluation=[d(1,gold(0,40),not_committed),d(0,gold(0,39),in_my_place),d(48,gold(11,6),not_committed),d(42,gold(7,7),not_committed),d(84,gold(44,6),not_committed),d(83,gold(44,7),not_committed),d(40,gold(10,12),not_committed),d(38,gold(9,13),not_committed),d(37,gold(8,13),committed_by(miner1,at(39,27),far(45))),d(38,gold(7,11),committed_by(miner1,at(39,27),far(48))),d(39,gold(8,11),not_committed),d(40,gold(9,11),not_committed)] -[miner3] Gold options are [d(1,gold(0,40),not_committed),d(0,gold(0,39),in_my_place),d(48,gold(11,6),not_committed),d(42,gold(7,7),not_committed),d(84,gold(44,6),not_committed),d(83,gold(44,7),not_committed),d(40,gold(10,12),not_committed),d(38,gold(9,13),not_committed),d(37,gold(8,13),committed_by(miner1,at(39,27),far(45))),d(38,gold(7,11),committed_by(miner1,at(39,27),far(48))),d(39,gold(8,11),not_committed),d(40,gold(9,11),not_committed)]. Next gold is gold(0,39) -[MiningEnvironment] Cycle 468 finished in 7 ms, mean is 6. -[miner3] Picked gold(0,39), I have 1 pieces of gold -[miner3] All golds=[gold(0,40),gold(11,6),gold(7,7),gold(44,11),gold(44,6),gold(44,7),gold(10,12),gold(9,13),gold(8,13),gold(7,11),gold(8,11),gold(9,11)], evaluation=[d(1,gold(0,40),not_committed),d(48,gold(7,7),not_committed),d(94,gold(44,6),not_committed),d(93,gold(44,7),not_committed),d(45,gold(10,12),not_committed),d(43,gold(9,13),not_committed),d(41,gold(8,13),committed_by(miner1,at(39,26),far(44))),d(43,gold(7,11),committed_by(miner1,at(39,26),far(47))),d(44,gold(8,11),not_committed),d(45,gold(9,11),not_committed)] -[miner3] Gold options are [d(1,gold(0,40),not_committed),d(48,gold(7,7),not_committed),d(94,gold(44,6),not_committed),d(93,gold(44,7),not_committed),d(45,gold(10,12),not_committed),d(43,gold(9,13),not_committed),d(41,gold(8,13),committed_by(miner1,at(39,26),far(44))),d(43,gold(7,11),committed_by(miner1,at(39,26),far(47))),d(44,gold(8,11),not_committed),d(45,gold(9,11),not_committed)]. Next gold is gold(0,40) -[miner3] Handling gold(0,40) now. -[MiningEnvironment] Cycle 469 finished in 8 ms, mean is 6. -[miner4] *** Start it all again! -[miner4] Going to depot to deliver 3 golds. -[dummy4] picked gold! -[MiningEnvironment] Cycle 470 finished in 3 ms, mean is 6. -[miner3] Picked gold(0,40), I have 2 pieces of gold -[dummy4] picked gold! -[miner3] All golds=[gold(11,6),gold(7,7),gold(44,11),gold(44,6),gold(44,7),gold(10,12),gold(9,13),gold(8,13),gold(7,11),gold(8,11),gold(9,11)], evaluation=[d(54,gold(7,7),not_committed),d(106,gold(44,6),not_committed),d(105,gold(44,7),not_committed),d(51,gold(10,12),not_committed),d(49,gold(9,13),not_committed),d(50,gold(8,11),not_committed),d(51,gold(9,11),not_committed)] -[miner3] Gold options are [d(54,gold(7,7),not_committed),d(106,gold(44,6),not_committed),d(105,gold(44,7),not_committed),d(51,gold(10,12),not_committed),d(49,gold(9,13),not_committed),d(50,gold(8,11),not_committed),d(51,gold(9,11),not_committed)]. Next gold is gold(9,13) -[miner3] Handling gold(9,13) now. -[MiningEnvironment] Cycle 471 finished in 7 ms, mean is 6. -[MiningEnvironment] Cycle 472 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 473 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 474 finished in 1 ms, mean is 6. -[MiningEnvironment] Cycle 475 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 476 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 477 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 478 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 479 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 480 finished in 3 ms, mean is 6. -[dummy3] picked gold! -[MiningEnvironment] Cycle 481 finished in 3 ms, mean is 6. -[dummy3] picked gold! -[MiningEnvironment] Cycle 482 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 483 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 484 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 485 finished in 4 ms, mean is 6. -[dummy1] picked gold! -[MiningEnvironment] Cycle 486 finished in 4 ms, mean is 6. -[dummy3] picked gold! -[MiningEnvironment] Cycle 487 finished in 4 ms, mean is 6. -[MiningEnvironment] Cycle 488 finished in 5 ms, mean is 6. -[MiningEnvironment] Cycle 489 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 490 finished in 8 ms, mean is 6. -[miner1] Picked gold(44,11), I have 0 pieces of gold -[miner1] All golds=[gold(11,6),gold(7,7),gold(44,6),gold(44,7),gold(10,12),gold(9,11),gold(8,13),gold(9,13),gold(8,11),gold(7,11)], evaluation=[d(45,gold(7,7),not_committed),d(5,gold(44,6),not_committed),d(4,gold(44,7),not_committed),d(42,gold(10,12),not_committed),d(45,gold(9,11),not_committed),d(44,gold(8,13),not_committed),d(46,gold(8,11),not_committed),d(47,gold(7,11),not_committed)] -[miner1] Gold options are [d(45,gold(7,7),not_committed),d(5,gold(44,6),not_committed),d(4,gold(44,7),not_committed),d(42,gold(10,12),not_committed),d(45,gold(9,11),not_committed),d(44,gold(8,13),not_committed),d(46,gold(8,11),not_committed),d(47,gold(7,11),not_committed)]. Next gold is gold(44,7) -[miner1] Handling gold(44,7) now. -[MiningEnvironment] Cycle 491 finished in 6 ms, mean is 6. -[dummy1] picked gold! -[MiningEnvironment] Cycle 492 finished in 3 ms, mean is 6. -[MiningEnvironment] Cycle 493 finished in 1 ms, mean is 6. -[MiningEnvironment] Cycle 494 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 495 finished in 3 ms, mean is 6. -[miner1] Picked gold(44,7), I have 1 pieces of gold -[miner1] All golds=[gold(11,6),gold(7,7),gold(44,6),gold(10,12),gold(9,11),gold(8,13),gold(9,13),gold(8,11),gold(7,11)], evaluation=[d(48,gold(7,7),not_committed),d(1,gold(44,6),not_committed),d(48,gold(10,12),not_committed),d(48,gold(9,11),not_committed),d(51,gold(8,13),not_committed),d(49,gold(8,11),not_committed),d(50,gold(7,11),not_committed)] -[miner1] Gold options are [d(48,gold(7,7),not_committed),d(1,gold(44,6),not_committed),d(48,gold(10,12),not_committed),d(48,gold(9,11),not_committed),d(51,gold(8,13),not_committed),d(49,gold(8,11),not_committed),d(50,gold(7,11),not_committed)]. Next gold is gold(44,6) -[miner1] Handling gold(44,6) now. -[MiningEnvironment] Cycle 496 finished in 7 ms, mean is 6. -[MiningEnvironment] Cycle 497 finished in 1 ms, mean is 6. -[MiningEnvironment] Cycle 498 finished in 2 ms, mean is 6. -[miner1] Picked gold(44,6), I have 2 pieces of gold -[miner1] All golds=[gold(11,6),gold(7,7),gold(10,12),gold(9,11),gold(8,13),gold(9,13),gold(8,11),gold(7,11)], evaluation=[d(51,gold(7,7),not_committed),d(54,gold(10,12),not_committed),d(54,gold(9,11),not_committed),d(58,gold(8,13),not_committed),d(56,gold(8,11),not_committed),d(57,gold(7,11),not_committed)] -[miner1] Gold options are [d(51,gold(7,7),not_committed),d(54,gold(10,12),not_committed),d(54,gold(9,11),not_committed),d(58,gold(8,13),not_committed),d(56,gold(8,11),not_committed),d(57,gold(7,11),not_committed)]. Next gold is gold(7,7) -[miner1] Handling gold(7,7) now. -[MiningEnvironment] Cycle 499 finished in 6 ms, mean is 6. -[dummy6] in depot -[MiningEnvironment] Cycle 500 finished in 3 ms, mean is 6. -[WorldModel] Agent 6 carried 3 golds to depot! -[MiningEnvironment] Cycle 501 finished in 3 ms, mean is 6. -[miner1] Gold perceived: gold(41,7) -[miner1] All golds=[gold(41,7),gold(11,6),gold(7,7),gold(10,12),gold(9,11),gold(8,13),gold(9,13),gold(8,11),gold(7,11)], evaluation=[d(2,gold(41,7),not_committed),d(49,gold(7,7),not_committed),d(51,gold(10,12),not_committed),d(51,gold(9,11),not_committed),d(56,gold(8,13),not_committed),d(53,gold(8,11),not_committed),d(54,gold(7,11),not_committed)] -[miner1] Gold options are [d(2,gold(41,7),not_committed),d(49,gold(7,7),not_committed),d(51,gold(10,12),not_committed),d(51,gold(9,11),not_committed),d(56,gold(8,13),not_committed),d(53,gold(8,11),not_committed),d(54,gold(7,11),not_committed)]. Next gold is gold(41,7) -[miner1] Handling gold(41,7) now. -[MiningEnvironment] Cycle 502 finished in 5 ms, mean is 5. -[miner1] Gold perceived: gold(41,5) -[miner1] All golds=[gold(41,5),gold(41,7),gold(11,6),gold(7,7),gold(10,12),gold(9,11),gold(8,13),gold(9,13),gold(8,11),gold(7,11)], evaluation=[d(2,gold(41,5),not_committed),d(2,gold(41,7),not_committed),d(49,gold(7,7),not_committed),d(51,gold(10,12),not_committed),d(51,gold(9,11),not_committed),d(56,gold(8,13),not_committed),d(53,gold(8,11),not_committed),d(54,gold(7,11),not_committed)] -[miner1] Gold options are [d(2,gold(41,5),not_committed),d(2,gold(41,7),not_committed),d(49,gold(7,7),not_committed),d(51,gold(10,12),not_committed),d(51,gold(9,11),not_committed),d(56,gold(8,13),not_committed),d(53,gold(8,11),not_committed),d(54,gold(7,11),not_committed)]. Next gold is gold(41,5) -[miner1] Handling gold(41,5) now. -[MiningEnvironment] Cycle 503 finished in 5 ms, mean is 5. -[miner1] Gold perceived: gold(41,4) -[miner1] All golds=[gold(41,4),gold(41,5),gold(41,7),gold(11,6),gold(7,7),gold(10,12),gold(9,11),gold(8,13),gold(9,13),gold(8,11),gold(7,11)], evaluation=[d(2,gold(41,4),not_committed),d(1,gold(41,5),not_committed),d(4,gold(41,7),not_committed),d(50,gold(7,7),not_committed),d(53,gold(10,12),not_committed),d(53,gold(9,11),not_committed),d(57,gold(8,13),not_committed),d(54,gold(8,11),not_committed),d(56,gold(7,11),not_committed)] -[miner1] Gold options are [d(2,gold(41,4),not_committed),d(1,gold(41,5),not_committed),d(4,gold(41,7),not_committed),d(50,gold(7,7),not_committed),d(53,gold(10,12),not_committed),d(53,gold(9,11),not_committed),d(57,gold(8,13),not_committed),d(54,gold(8,11),not_committed),d(56,gold(7,11),not_committed)]. Next gold is gold(41,5) -[miner1] Gold perceived: gold(43,4) -[miner1] All golds=[gold(43,4),gold(41,4),gold(41,5),gold(41,7),gold(11,6),gold(7,7),gold(10,12),gold(9,11),gold(8,13),gold(9,13),gold(8,11),gold(7,11)], evaluation=[d(2,gold(43,4),not_committed),d(2,gold(41,4),not_committed),d(1,gold(41,5),not_committed),d(4,gold(41,7),not_committed),d(50,gold(7,7),not_committed),d(53,gold(10,12),not_committed),d(53,gold(9,11),not_committed),d(57,gold(8,13),not_committed),d(54,gold(8,11),not_committed),d(56,gold(7,11),not_committed)] -[miner1] Gold options are [d(2,gold(43,4),not_committed),d(2,gold(41,4),not_committed),d(1,gold(41,5),not_committed),d(4,gold(41,7),not_committed),d(50,gold(7,7),not_committed),d(53,gold(10,12),not_committed),d(53,gold(9,11),not_committed),d(57,gold(8,13),not_committed),d(54,gold(8,11),not_committed),d(56,gold(7,11),not_committed)]. Next gold is gold(41,5) -[MiningEnvironment] Cycle 504 finished in 10 ms, mean is 6. -[MiningEnvironment] Cycle 505 finished in 1 ms, mean is 5. -[miner1] Gold perceived: gold(40,4) -[miner1] All golds=[gold(40,4),gold(43,4),gold(41,4),gold(41,5),gold(41,7),gold(11,6),gold(7,7),gold(10,12),gold(9,11),gold(8,13),gold(9,13),gold(8,11),gold(7,11)], evaluation=[d(2,gold(40,4),not_committed),d(4,gold(43,4),not_committed),d(1,gold(41,4),not_committed),d(0,gold(41,5),in_my_place),d(2,gold(41,7),not_committed),d(49,gold(7,7),not_committed),d(51,gold(10,12),not_committed),d(51,gold(9,11),not_committed),d(56,gold(8,13),not_committed),d(53,gold(8,11),not_committed),d(54,gold(7,11),not_committed)] -[miner1] Gold options are [d(2,gold(40,4),not_committed),d(4,gold(43,4),not_committed),d(1,gold(41,4),not_committed),d(0,gold(41,5),in_my_place),d(2,gold(41,7),not_committed),d(49,gold(7,7),not_committed),d(51,gold(10,12),not_committed),d(51,gold(9,11),not_committed),d(56,gold(8,13),not_committed),d(53,gold(8,11),not_committed),d(54,gold(7,11),not_committed)]. Next gold is gold(41,5) -[MiningEnvironment] Cycle 506 finished in 6 ms, mean is 5. -[miner1] Picked gold(41,5), I have 3 pieces of gold -[miner1] Going to depot to deliver 3 golds. -[miner1] Announcing gold(40,4), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] Announcing gold(43,4), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] Announcing gold(41,4), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] Announcing gold(41,7), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 507 finished in 14 ms, mean is 6. -[MiningEnvironment] Cycle 508 finished in 2 ms, mean is 6. -[MiningEnvironment] Cycle 509 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 510 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 511 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 512 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 513 finished in 3 ms, mean is 5. -[miner1] Announcing gold(39,7) to others -[MiningEnvironment] Cycle 514 finished in 7 ms, mean is 5. -[MiningEnvironment] Cycle 515 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 516 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 517 finished in 1 ms, mean is 5. -[MiningEnvironment] Cycle 518 finished in 2 ms, mean is 5. -[miner1] Announcing gold(38,9) to others -[MiningEnvironment] Cycle 519 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 520 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 521 finished in 2 ms, mean is 5. -[miner2] Gold perceived: gold(12,5) -[miner2] All golds=[gold(12,5),gold(38,9),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(11,6),gold(7,7)], evaluation=[d(2,gold(12,5),not_committed),d(30,gold(38,9),not_committed),d(29,gold(39,7),not_committed),d(33,gold(41,4),not_committed),d(35,gold(43,4),not_committed),d(31,gold(40,4),not_committed),d(2,gold(11,6),not_committed),d(7,gold(7,7),committed_by(miner1,at(38,10),far(34)))] -[miner2] Gold options are [d(2,gold(12,5),not_committed),d(30,gold(38,9),not_committed),d(29,gold(39,7),not_committed),d(33,gold(41,4),not_committed),d(35,gold(43,4),not_committed),d(31,gold(40,4),not_committed),d(2,gold(11,6),not_committed),d(7,gold(7,7),committed_by(miner1,at(38,10),far(34)))]. Next gold is gold(11,6) -[MiningEnvironment] Cycle 522 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 523 finished in 3 ms, mean is 5. -[miner2] Gold perceived: gold(10,5) -[miner2] All golds=[gold(10,5),gold(12,5),gold(38,9),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(11,6),gold(7,7)], evaluation=[d(2,gold(10,5),not_committed),d(2,gold(12,5),not_committed),d(33,gold(38,9),not_committed),d(31,gold(39,7),not_committed),d(35,gold(41,4),not_committed),d(37,gold(43,4),not_committed),d(34,gold(40,4),not_committed),d(0,gold(11,6),in_my_place),d(5,gold(7,7),committed_by(miner1,at(37,11),far(34)))] -[miner2] Gold options are [d(2,gold(10,5),not_committed),d(2,gold(12,5),not_committed),d(33,gold(38,9),not_committed),d(31,gold(39,7),not_committed),d(35,gold(41,4),not_committed),d(37,gold(43,4),not_committed),d(34,gold(40,4),not_committed),d(0,gold(11,6),in_my_place),d(5,gold(7,7),committed_by(miner1,at(37,11),far(34)))]. Next gold is gold(11,6) -[miner3] Picked gold(9,13), I have 2 pieces of gold -[miner3] All golds=[gold(38,9),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(11,6),gold(7,7),gold(10,12),gold(8,13),gold(7,11),gold(8,11),gold(9,11)], evaluation=[d(47,gold(38,9),not_committed),d(49,gold(39,7),not_committed),d(56,gold(41,4),not_committed),d(58,gold(43,4),not_committed),d(54,gold(40,4),not_committed),d(10,gold(7,7),committed_by(miner1,at(37,11),far(34))),d(2,gold(10,12),not_committed),d(1,gold(8,13),committed_by(miner1,at(37,11),far(33))),d(5,gold(7,11),committed_by(miner1,at(37,11),far(36))),d(4,gold(8,11),not_committed),d(2,gold(9,11),not_committed)] -[miner3] Gold options are [d(47,gold(38,9),not_committed),d(49,gold(39,7),not_committed),d(56,gold(41,4),not_committed),d(58,gold(43,4),not_committed),d(54,gold(40,4),not_committed),d(10,gold(7,7),committed_by(miner1,at(37,11),far(34))),d(2,gold(10,12),not_committed),d(1,gold(8,13),committed_by(miner1,at(37,11),far(33))),d(5,gold(7,11),committed_by(miner1,at(37,11),far(36))),d(4,gold(8,11),not_committed),d(2,gold(9,11),not_committed)]. Next gold is gold(8,13) -[miner3] Handling gold(8,13) now. -[MiningEnvironment] Cycle 524 finished in 6 ms, mean is 5. -[miner2] Picked gold(11,6), I have 1 pieces of gold -[miner3] Gold perceived: gold(9,13) -[miner2] All golds=[gold(10,5),gold(12,5),gold(38,9),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(2,gold(10,5),not_committed),d(2,gold(12,5),not_committed),d(37,gold(38,9),not_committed),d(35,gold(39,7),not_committed),d(39,gold(41,4),not_committed),d(41,gold(43,4),not_committed),d(38,gold(40,4),not_committed),d(6,gold(7,7),committed_by(miner1,at(37,11),far(34)))] -[miner2] Gold options are [d(2,gold(10,5),not_committed),d(2,gold(12,5),not_committed),d(37,gold(38,9),not_committed),d(35,gold(39,7),not_committed),d(39,gold(41,4),not_committed),d(41,gold(43,4),not_committed),d(38,gold(40,4),not_committed),d(6,gold(7,7),committed_by(miner1,at(37,11),far(34)))]. Next gold is gold(10,5) -[miner2] Handling gold(10,5) now. -[miner3] All golds=[gold(9,13),gold(38,9),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(11,6),gold(7,7),gold(10,12),gold(8,13),gold(7,11),gold(8,11),gold(9,11)], evaluation=[d(1,gold(9,13),not_committed),d(49,gold(38,9),not_committed),d(50,gold(39,7),not_committed),d(57,gold(41,4),not_committed),d(60,gold(43,4),not_committed),d(56,gold(40,4),not_committed),d(9,gold(7,7),committed_by(miner1,at(37,11),far(34))),d(4,gold(10,12),not_committed),d(0,gold(8,13),in_my_place),d(4,gold(7,11),committed_by(miner1,at(37,11),far(36))),d(2,gold(8,11),not_committed),d(4,gold(9,11),not_committed)] -[miner3] Gold options are [d(1,gold(9,13),not_committed),d(49,gold(38,9),not_committed),d(50,gold(39,7),not_committed),d(57,gold(41,4),not_committed),d(60,gold(43,4),not_committed),d(56,gold(40,4),not_committed),d(9,gold(7,7),committed_by(miner1,at(37,11),far(34))),d(4,gold(10,12),not_committed),d(0,gold(8,13),in_my_place),d(4,gold(7,11),committed_by(miner1,at(37,11),far(36))),d(2,gold(8,11),not_committed),d(4,gold(9,11),not_committed)]. Next gold is gold(8,13) -[MiningEnvironment] Cycle 525 finished in 8 ms, mean is 5. -[miner2] Gold perceived: gold(11,4) -[miner3] Picked gold(8,13), I have 3 pieces of gold -[miner3] Going to depot to deliver 3 golds. -[miner3] Announcing gold(9,13), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner2] All golds=[gold(11,4),gold(10,5),gold(12,5),gold(38,9),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(1,gold(11,4),not_committed),d(1,gold(10,5),not_committed),d(1,gold(12,5),not_committed),d(38,gold(38,9),not_committed),d(37,gold(39,7),not_committed),d(40,gold(41,4),not_committed),d(43,gold(43,4),not_committed),d(39,gold(40,4),not_committed),d(7,gold(7,7),committed_by(miner1,at(36,11),far(33)))] -[miner2] Gold options are [d(1,gold(11,4),not_committed),d(1,gold(10,5),not_committed),d(1,gold(12,5),not_committed),d(38,gold(38,9),not_committed),d(37,gold(39,7),not_committed),d(40,gold(41,4),not_committed),d(43,gold(43,4),not_committed),d(39,gold(40,4),not_committed),d(7,gold(7,7),committed_by(miner1,at(36,11),far(33)))]. Next gold is gold(10,5) -[miner2] Gold perceived: gold(12,4) -[miner2] All golds=[gold(12,4),gold(9,13),gold(11,4),gold(10,5),gold(12,5),gold(38,9),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(2,gold(12,4),not_committed),d(12,gold(9,13),not_committed),d(1,gold(11,4),not_committed),d(1,gold(10,5),not_committed),d(1,gold(12,5),not_committed),d(38,gold(38,9),not_committed),d(37,gold(39,7),not_committed),d(40,gold(41,4),not_committed),d(43,gold(43,4),not_committed),d(39,gold(40,4),not_committed),d(7,gold(7,7),committed_by(miner1,at(36,11),far(33)))] -[miner2] Gold options are [d(2,gold(12,4),not_committed),d(12,gold(9,13),not_committed),d(1,gold(11,4),not_committed),d(1,gold(10,5),not_committed),d(1,gold(12,5),not_committed),d(38,gold(38,9),not_committed),d(37,gold(39,7),not_committed),d(40,gold(41,4),not_committed),d(43,gold(43,4),not_committed),d(39,gold(40,4),not_committed),d(7,gold(7,7),committed_by(miner1,at(36,11),far(33)))]. Next gold is gold(10,5) -[MiningEnvironment] Cycle 526 finished in 9 ms, mean is 5. -[miner2] Gold perceived: gold(10,4) -[miner2] All golds=[gold(10,4),gold(12,4),gold(9,13),gold(11,4),gold(10,5),gold(12,5),gold(38,9),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(2,gold(10,4),not_committed),d(2,gold(12,4),not_committed),d(12,gold(9,13),not_committed),d(1,gold(11,4),not_committed),d(1,gold(10,5),not_committed),d(1,gold(12,5),not_committed),d(38,gold(38,9),not_committed),d(37,gold(39,7),not_committed),d(40,gold(41,4),not_committed),d(43,gold(43,4),not_committed),d(39,gold(40,4),not_committed),d(7,gold(7,7),committed_by(miner1,at(36,12),far(34)))] -[miner2] Gold options are [d(2,gold(10,4),not_committed),d(2,gold(12,4),not_committed),d(12,gold(9,13),not_committed),d(1,gold(11,4),not_committed),d(1,gold(10,5),not_committed),d(1,gold(12,5),not_committed),d(38,gold(38,9),not_committed),d(37,gold(39,7),not_committed),d(40,gold(41,4),not_committed),d(43,gold(43,4),not_committed),d(39,gold(40,4),not_committed),d(7,gold(7,7),committed_by(miner1,at(36,12),far(34)))]. Next gold is gold(10,5) -[MiningEnvironment] Cycle 527 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 528 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 529 finished in 2 ms, mean is 5. -[miner3] *** Start it all again! -[miner3] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 530 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 531 finished in 4 ms, mean is 5. -[miner2] Picked gold(10,5), I have 2 pieces of gold -[miner2] All golds=[gold(10,4),gold(12,4),gold(9,13),gold(11,4),gold(12,5),gold(38,9),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(1,gold(10,4),not_committed),d(4,gold(12,4),not_committed),d(12,gold(9,13),not_committed),d(2,gold(11,4),not_committed),d(2,gold(12,5),not_committed),d(43,gold(38,9),not_committed),d(42,gold(39,7),not_committed),d(46,gold(41,4),not_committed),d(49,gold(43,4),not_committed),d(45,gold(40,4),not_committed),d(6,gold(7,7),committed_by(miner1,at(36,14),far(36)))] -[miner2] Gold options are [d(1,gold(10,4),not_committed),d(4,gold(12,4),not_committed),d(12,gold(9,13),not_committed),d(2,gold(11,4),not_committed),d(2,gold(12,5),not_committed),d(43,gold(38,9),not_committed),d(42,gold(39,7),not_committed),d(46,gold(41,4),not_committed),d(49,gold(43,4),not_committed),d(45,gold(40,4),not_committed),d(6,gold(7,7),committed_by(miner1,at(36,14),far(36)))]. Next gold is gold(10,4) -[miner2] Handling gold(10,4) now. -[MiningEnvironment] Cycle 532 finished in 5 ms, mean is 5. -[miner3] Announcing gold(9,13) to others -[MiningEnvironment] Cycle 533 finished in 2 ms, mean is 5. -[miner3] Announcing gold(10,12) to others -[MiningEnvironment] Cycle 534 finished in 4 ms, mean is 5. -[miner2] Picked gold(10,4), I have 3 pieces of gold -[miner2] Going to depot to deliver 3 golds. -[miner2] Announcing gold(12,4), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner2] Announcing gold(11,4), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner2] Announcing gold(12,5), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 535 finished in 4 ms, mean is 5. -[WorldModel] Agent 10 carried 3 golds to depot! -[MiningEnvironment] Cycle 536 finished in 4 ms, mean is 5. -[miner4] All golds=[], evaluation=[] -[miner4] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 537 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 538 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 539 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 540 finished in 2 ms, mean is 5. -[dummy1] picked gold! -[MiningEnvironment] Cycle 541 finished in 4 ms, mean is 5. -[dummy1] picked gold! -[MiningEnvironment] Cycle 542 finished in 19 ms, mean is 5. -[MiningEnvironment] Cycle 543 finished in 4 ms, mean is 5. -[miner3] *** Start it all again! -[miner3] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 544 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 545 finished in 8 ms, mean is 5. -[MiningEnvironment] Cycle 546 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 547 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 548 finished in 3 ms, mean is 5. -[dummy6] picked gold! -[MiningEnvironment] Cycle 549 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 550 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 551 finished in 3 ms, mean is 5. -[miner6] Gold perceived: gold(33,10) -[miner6] All golds=[gold(33,10)], evaluation=[d(2,gold(33,10),not_committed)] -[miner6] Gold options are [d(2,gold(33,10),not_committed)]. Next gold is gold(33,10) -[miner6] Dropping search_gold desires and intentions to handle gold -[miner6] Handling gold(33,10) now. -[MiningEnvironment] Cycle 552 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 553 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 554 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 555 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 556 finished in 2 ms, mean is 5. -[miner4] All golds=[], evaluation=[] -[miner4] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 557 finished in 3 ms, mean is 5. -[miner6] Gold perceived: gold(30,7) -[miner6] All golds=[gold(30,7),gold(33,10)], evaluation=[d(1,gold(30,7),not_committed),d(5,gold(33,10),not_committed)] -[miner6] Gold options are [d(1,gold(30,7),not_committed),d(5,gold(33,10),not_committed)]. Next gold is gold(30,7) -[miner6] Handling gold(30,7) now. -[MiningEnvironment] Cycle 558 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 559 finished in 2 ms, mean is 5. -[miner6] Picked gold(30,7), I have 1 pieces of gold -[miner6] All golds=[gold(33,10)], evaluation=[d(7,gold(33,10),not_committed)] -[miner6] Gold options are [d(7,gold(33,10),not_committed)]. Next gold is gold(33,10) -[miner6] Handling gold(33,10) now. -[MiningEnvironment] Cycle 560 finished in 4 ms, mean is 5. -[dummy6] picked gold! -[miner6] Gold perceived: gold(32,7) -[miner6] All golds=[gold(32,7),gold(33,10)], evaluation=[d(1,gold(32,7),not_committed),d(6,gold(33,10),not_committed)] -[miner6] Gold options are [d(1,gold(32,7),not_committed),d(6,gold(33,10),not_committed)]. Next gold is gold(32,7) -[miner6] Handling gold(32,7) now. -[MiningEnvironment] Cycle 561 finished in 2 ms, mean is 5. -[miner6] Gold perceived: gold(33,6) -[miner6] All golds=[gold(33,6),gold(32,7),gold(33,10)], evaluation=[d(2,gold(33,6),not_committed),d(0,gold(32,7),in_my_place),d(4,gold(33,10),not_committed)] -[miner6] Gold options are [d(2,gold(33,6),not_committed),d(0,gold(32,7),in_my_place),d(4,gold(33,10),not_committed)]. Next gold is gold(32,7) -[miner6] Gold perceived: gold(33,7) -[miner6] All golds=[gold(33,7),gold(33,6),gold(32,7),gold(33,10)], evaluation=[d(1,gold(33,7),not_committed),d(2,gold(33,6),not_committed),d(0,gold(32,7),in_my_place),d(4,gold(33,10),not_committed)] -[miner6] Gold options are [d(1,gold(33,7),not_committed),d(2,gold(33,6),not_committed),d(0,gold(32,7),in_my_place),d(4,gold(33,10),not_committed)]. Next gold is gold(32,7) -[MiningEnvironment] Cycle 562 finished in 3 ms, mean is 5. -[miner6] Picked gold(32,7), I have 2 pieces of gold -[miner6] All golds=[gold(33,7),gold(33,6),gold(33,10)], evaluation=[d(1,gold(33,7),not_committed),d(2,gold(33,6),not_committed),d(5,gold(33,10),not_committed)] -[miner6] Gold options are [d(1,gold(33,7),not_committed),d(2,gold(33,6),not_committed),d(5,gold(33,10),not_committed)]. Next gold is gold(33,7) -[miner6] Handling gold(33,7) now. -[MiningEnvironment] Cycle 563 finished in 5 ms, mean is 5. -[miner6] Picked gold(33,7), I have 2 pieces of gold -[miner6] All golds=[gold(33,6),gold(33,10)], evaluation=[d(1,gold(33,6),not_committed),d(4,gold(33,10),not_committed)] -[miner6] Gold options are [d(1,gold(33,6),not_committed),d(4,gold(33,10),not_committed)]. Next gold is gold(33,6) -[miner6] Handling gold(33,6) now. -[MiningEnvironment] Cycle 564 finished in 3 ms, mean is 5. -[miner6] Gold perceived: gold(33,7) -[miner6] All golds=[gold(33,7),gold(33,6),gold(33,10)], evaluation=[d(1,gold(33,7),not_committed),d(0,gold(33,6),in_my_place),d(5,gold(33,10),not_committed)] -[miner6] Gold options are [d(1,gold(33,7),not_committed),d(0,gold(33,6),in_my_place),d(5,gold(33,10),not_committed)]. Next gold is gold(33,6) -[MiningEnvironment] Cycle 565 finished in 3 ms, mean is 5. -[dummy3] in depot -[miner6] Picked gold(33,6), I have 3 pieces of gold -[miner6] Going to depot to deliver 3 golds. -[miner6] Announcing gold(33,7), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner6] Announcing gold(33,10), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 566 finished in 4 ms, mean is 5. -[WorldModel] Agent 3 carried 3 golds to depot! -[dummy4] in depot -[MiningEnvironment] Cycle 567 finished in 2 ms, mean is 5. -[WorldModel] Agent 4 carried 3 golds to depot! -[MiningEnvironment] Cycle 568 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 569 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 570 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 571 finished in 3 ms, mean is 5. -[dummy6] picked gold! -[MiningEnvironment] Cycle 572 finished in 2 ms, mean is 5. -[dummy6] picked gold! -[MiningEnvironment] Cycle 573 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 574 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 575 finished in 3 ms, mean is 5. -[dummy6] picked gold! -[MiningEnvironment] Cycle 576 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 577 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 578 finished in 4 ms, mean is 5. -[WorldModel] Agent 7 carried 3 golds to depot! -[MiningEnvironment] Cycle 579 finished in 3 ms, mean is 5. -[dummy6] picked gold! -[miner1] All golds=[gold(33,10),gold(33,7),gold(12,5),gold(11,4),gold(12,4),gold(9,13),gold(38,9),gold(39,7),gold(40,4),gold(43,4),gold(41,4),gold(41,7),gold(7,7),gold(10,12),gold(9,11),gold(8,11),gold(7,11)], evaluation=[d(33,gold(33,7),not_committed),d(51,gold(12,5),not_committed),d(53,gold(11,4),not_committed),d(52,gold(12,4),not_committed),d(46,gold(9,13),not_committed),d(36,gold(38,9),not_committed),d(39,gold(39,7),not_committed),d(44,gold(40,4),not_committed),d(47,gold(43,4),not_committed),d(45,gold(41,4),not_committed),d(41,gold(41,7),not_committed),d(55,gold(7,7),not_committed),d(46,gold(10,12),not_committed),d(48,gold(9,11),not_committed),d(49,gold(8,11),not_committed),d(50,gold(7,11),not_committed)] -[miner1] Gold options are [d(33,gold(33,7),not_committed),d(51,gold(12,5),not_committed),d(53,gold(11,4),not_committed),d(52,gold(12,4),not_committed),d(46,gold(9,13),not_committed),d(36,gold(38,9),not_committed),d(39,gold(39,7),not_committed),d(44,gold(40,4),not_committed),d(47,gold(43,4),not_committed),d(45,gold(41,4),not_committed),d(41,gold(41,7),not_committed),d(55,gold(7,7),not_committed),d(46,gold(10,12),not_committed),d(48,gold(9,11),not_committed),d(49,gold(8,11),not_committed),d(50,gold(7,11),not_committed)]. Next gold is gold(33,7) -[miner1] Handling gold(33,7) now. -[MiningEnvironment] Cycle 580 finished in 9 ms, mean is 5. -[dummy6] picked gold! -[MiningEnvironment] Cycle 581 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 582 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 583 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 584 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 585 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 586 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 587 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 588 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 589 finished in 4 ms, mean is 5. -[miner3] *** Start it all again! -[miner3] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 590 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 591 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 592 finished in 6 ms, mean is 5. -[MiningEnvironment] Cycle 593 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 594 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 595 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 596 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 597 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 598 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 599 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 600 finished in 2 ms, mean is 5. -[miner6] *** Start it all again! -[miner6] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 601 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 602 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 603 finished in 1 ms, mean is 5. -[dummy3] picked gold! -[MiningEnvironment] Cycle 604 finished in 2 ms, mean is 5. -[dummy3] picked gold! -[MiningEnvironment] Cycle 605 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 606 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 607 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 608 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 609 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 610 finished in 2 ms, mean is 5. -[miner6] *** Start it all again! -[miner6] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 611 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 612 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 613 finished in 2 ms, mean is 5. -[dummy3] picked gold! -[MiningEnvironment] Cycle 614 finished in 2 ms, mean is 5. -[miner1] Picked gold(33,7), I have 1 pieces of gold -[miner1] All golds=[gold(33,10),gold(12,5),gold(11,4),gold(12,4),gold(9,13),gold(38,9),gold(39,7),gold(40,4),gold(43,4),gold(41,4),gold(41,7),gold(7,7),gold(10,12),gold(9,11),gold(8,11),gold(7,11)], evaluation=[d(3,gold(33,10),committed_by(miner6,at(29,25),far(23))),d(28,gold(12,5),not_committed),d(30,gold(11,4),not_committed),d(29,gold(12,4),not_committed),d(37,gold(9,13),not_committed),d(8,gold(38,9),not_committed),d(7,gold(39,7),not_committed),d(12,gold(40,4),not_committed),d(16,gold(43,4),not_committed),d(13,gold(41,4),not_committed),d(9,gold(41,7),not_committed),d(34,gold(7,7),not_committed),d(34,gold(10,12),not_committed),d(34,gold(9,11),not_committed),d(35,gold(8,11),not_committed),d(37,gold(7,11),not_committed)] -[miner1] Gold options are [d(3,gold(33,10),committed_by(miner6,at(29,25),far(23))),d(28,gold(12,5),not_committed),d(30,gold(11,4),not_committed),d(29,gold(12,4),not_committed),d(37,gold(9,13),not_committed),d(8,gold(38,9),not_committed),d(7,gold(39,7),not_committed),d(12,gold(40,4),not_committed),d(16,gold(43,4),not_committed),d(13,gold(41,4),not_committed),d(9,gold(41,7),not_committed),d(34,gold(7,7),not_committed),d(34,gold(10,12),not_committed),d(34,gold(9,11),not_committed),d(35,gold(8,11),not_committed),d(37,gold(7,11),not_committed)]. Next gold is gold(33,10) -[miner1] Handling gold(33,10) now. -[MiningEnvironment] Cycle 615 finished in 6 ms, mean is 5. -[MiningEnvironment] Cycle 616 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 617 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 618 finished in 1 ms, mean is 5. -[dummy5] picked gold! -[MiningEnvironment] Cycle 619 finished in 3 ms, mean is 5. -[dummy5] picked gold! -[miner1] Picked gold(33,10), I have 1 pieces of gold -[miner1] All golds=[gold(12,5),gold(11,4),gold(12,4),gold(9,13),gold(38,9),gold(39,7),gold(40,4),gold(43,4),gold(41,4),gold(41,7),gold(7,7),gold(10,12),gold(9,11),gold(8,11),gold(7,11)], evaluation=[d(32,gold(12,5),not_committed),d(34,gold(11,4),not_committed),d(33,gold(12,4),not_committed),d(38,gold(9,13),not_committed),d(7,gold(38,9),not_committed),d(11,gold(39,7),not_committed),d(16,gold(40,4),not_committed),d(19,gold(43,4),not_committed),d(17,gold(41,4),not_committed),d(13,gold(41,7),not_committed),d(35,gold(7,7),not_committed),d(35,gold(10,12),not_committed),d(35,gold(9,11),not_committed),d(37,gold(8,11),not_committed),d(38,gold(7,11),not_committed)] -[miner1] Gold options are [d(32,gold(12,5),not_committed),d(34,gold(11,4),not_committed),d(33,gold(12,4),not_committed),d(38,gold(9,13),not_committed),d(7,gold(38,9),not_committed),d(11,gold(39,7),not_committed),d(16,gold(40,4),not_committed),d(19,gold(43,4),not_committed),d(17,gold(41,4),not_committed),d(13,gold(41,7),not_committed),d(35,gold(7,7),not_committed),d(35,gold(10,12),not_committed),d(35,gold(9,11),not_committed),d(37,gold(8,11),not_committed),d(38,gold(7,11),not_committed)]. Next gold is gold(38,9) -[miner1] Handling gold(38,9) now. -[MiningEnvironment] Cycle 620 finished in 7 ms, mean is 5. -[miner1] Gold perceived: gold(33,10) -[miner1] All golds=[gold(33,10),gold(12,5),gold(11,4),gold(12,4),gold(9,13),gold(38,9),gold(39,7),gold(40,4),gold(43,4),gold(41,4),gold(41,7),gold(7,7),gold(10,12),gold(9,11),gold(8,11),gold(7,11)], evaluation=[d(1,gold(33,10),not_committed),d(33,gold(12,5),not_committed),d(35,gold(11,4),not_committed),d(34,gold(12,4),not_committed),d(39,gold(9,13),not_committed),d(6,gold(38,9),not_committed),d(9,gold(39,7),not_committed),d(14,gold(40,4),not_committed),d(18,gold(43,4),not_committed),d(16,gold(41,4),not_committed),d(12,gold(41,7),not_committed),d(37,gold(7,7),not_committed),d(37,gold(10,12),not_committed),d(37,gold(9,11),not_committed),d(38,gold(8,11),not_committed),d(39,gold(7,11),not_committed)] -[miner1] Gold options are [d(1,gold(33,10),not_committed),d(33,gold(12,5),not_committed),d(35,gold(11,4),not_committed),d(34,gold(12,4),not_committed),d(39,gold(9,13),not_committed),d(6,gold(38,9),not_committed),d(9,gold(39,7),not_committed),d(14,gold(40,4),not_committed),d(18,gold(43,4),not_committed),d(16,gold(41,4),not_committed),d(12,gold(41,7),not_committed),d(37,gold(7,7),not_committed),d(37,gold(10,12),not_committed),d(37,gold(9,11),not_committed),d(38,gold(8,11),not_committed),d(39,gold(7,11),not_committed)]. Next gold is gold(33,10) -[miner1] Handling gold(33,10) now. -[MiningEnvironment] Cycle 621 finished in 6 ms, mean is 5. -[miner1] Picked gold(33,10), I have 1 pieces of gold -[dummy4] picked gold! -[miner1] All golds=[gold(12,5),gold(11,4),gold(12,4),gold(9,13),gold(38,9),gold(39,7),gold(40,4),gold(43,4),gold(41,4),gold(41,7),gold(7,7),gold(10,12),gold(9,11),gold(8,11),gold(7,11)], evaluation=[d(32,gold(12,5),not_committed),d(34,gold(11,4),not_committed),d(33,gold(12,4),not_committed),d(38,gold(9,13),not_committed),d(7,gold(38,9),not_committed),d(11,gold(39,7),not_committed),d(16,gold(40,4),not_committed),d(19,gold(43,4),not_committed),d(17,gold(41,4),not_committed),d(13,gold(41,7),not_committed),d(35,gold(7,7),not_committed),d(35,gold(10,12),not_committed),d(35,gold(9,11),not_committed),d(37,gold(8,11),not_committed),d(38,gold(7,11),not_committed)] -[miner1] Gold options are [d(32,gold(12,5),not_committed),d(34,gold(11,4),not_committed),d(33,gold(12,4),not_committed),d(38,gold(9,13),not_committed),d(7,gold(38,9),not_committed),d(11,gold(39,7),not_committed),d(16,gold(40,4),not_committed),d(19,gold(43,4),not_committed),d(17,gold(41,4),not_committed),d(13,gold(41,7),not_committed),d(35,gold(7,7),not_committed),d(35,gold(10,12),not_committed),d(35,gold(9,11),not_committed),d(37,gold(8,11),not_committed),d(38,gold(7,11),not_committed)]. Next gold is gold(38,9) -[miner1] Handling gold(38,9) now. -[MiningEnvironment] Cycle 622 finished in 6 ms, mean is 5. -[miner1] Gold perceived: gold(33,10) -[miner1] All golds=[gold(33,10),gold(12,5),gold(11,4),gold(12,4),gold(9,13),gold(38,9),gold(39,7),gold(40,4),gold(43,4),gold(41,4),gold(41,7),gold(7,7),gold(10,12),gold(9,11),gold(8,11),gold(7,11)], evaluation=[d(0,gold(33,10),in_my_place),d(32,gold(12,5),not_committed),d(34,gold(11,4),not_committed),d(33,gold(12,4),not_committed),d(38,gold(9,13),not_committed),d(7,gold(38,9),not_committed),d(11,gold(39,7),not_committed),d(16,gold(40,4),not_committed),d(19,gold(43,4),not_committed),d(17,gold(41,4),not_committed),d(13,gold(41,7),not_committed),d(35,gold(7,7),not_committed),d(35,gold(10,12),not_committed),d(35,gold(9,11),not_committed),d(37,gold(8,11),not_committed),d(38,gold(7,11),not_committed)] -[miner1] Gold options are [d(0,gold(33,10),in_my_place),d(32,gold(12,5),not_committed),d(34,gold(11,4),not_committed),d(33,gold(12,4),not_committed),d(38,gold(9,13),not_committed),d(7,gold(38,9),not_committed),d(11,gold(39,7),not_committed),d(16,gold(40,4),not_committed),d(19,gold(43,4),not_committed),d(17,gold(41,4),not_committed),d(13,gold(41,7),not_committed),d(35,gold(7,7),not_committed),d(35,gold(10,12),not_committed),d(35,gold(9,11),not_committed),d(37,gold(8,11),not_committed),d(38,gold(7,11),not_committed)]. Next gold is gold(33,10) -[miner1] Handling gold(33,10) now. -[MiningEnvironment] Cycle 623 finished in 5 ms, mean is 5. -[WorldModel] Agent 9 carried 3 golds to depot! -[dummy4] picked gold! -[MiningEnvironment] Cycle 624 finished in 2 ms, mean is 5. -[miner1] Picked gold(33,10), I have 2 pieces of gold -[miner3] All golds=[], evaluation=[] -[miner3] New goal is find gold: quadrant -[miner1] All golds=[gold(12,5),gold(11,4),gold(12,4),gold(9,13),gold(38,9),gold(39,7),gold(40,4),gold(43,4),gold(41,4),gold(41,7),gold(7,7),gold(10,12),gold(9,11),gold(8,11),gold(7,11)], evaluation=[d(35,gold(12,5),not_committed),d(38,gold(11,4),not_committed),d(36,gold(12,4),not_committed),d(42,gold(9,13),not_committed),d(8,gold(38,9),not_committed),d(12,gold(39,7),not_committed),d(17,gold(40,4),not_committed),d(21,gold(43,4),not_committed),d(19,gold(41,4),not_committed),d(15,gold(41,7),not_committed),d(39,gold(7,7),not_committed),d(39,gold(10,12),not_committed),d(39,gold(9,11),not_committed),d(41,gold(8,11),not_committed),d(42,gold(7,11),not_committed)] -[miner1] Gold options are [d(35,gold(12,5),not_committed),d(38,gold(11,4),not_committed),d(36,gold(12,4),not_committed),d(42,gold(9,13),not_committed),d(8,gold(38,9),not_committed),d(12,gold(39,7),not_committed),d(17,gold(40,4),not_committed),d(21,gold(43,4),not_committed),d(19,gold(41,4),not_committed),d(15,gold(41,7),not_committed),d(39,gold(7,7),not_committed),d(39,gold(10,12),not_committed),d(39,gold(9,11),not_committed),d(41,gold(8,11),not_committed),d(42,gold(7,11),not_committed)]. Next gold is gold(38,9) -[miner1] Handling gold(38,9) now. -[MiningEnvironment] Cycle 625 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 626 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 627 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 628 finished in 1 ms, mean is 5. -[MiningEnvironment] Cycle 629 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 630 finished in 1 ms, mean is 5. -[MiningEnvironment] Cycle 631 finished in 2 ms, mean is 5. -[dummy4] picked gold! -[MiningEnvironment] Cycle 632 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 633 finished in 1 ms, mean is 5. -[dummy3] picked gold! -[MiningEnvironment] Cycle 634 finished in 2 ms, mean is 5. -[miner1] Picked gold(38,9), I have 3 pieces of gold -[miner1] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 635 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 636 finished in 3 ms, mean is 5. -[miner6] I can not finish 'go to depot'! -[miner6] All golds=[], evaluation=[] -[miner6] Going to depot to deliver 2 golds. -[dummy1] in depot -[miner6] No route from 29,33 to 29,34! ---------------------------------------------- -| | -| | -| | -| | -| | -| | -| | -| X X | -| | -| X X | -| X X | -| X X | -| X X | -| X | -| | -| X | -| X | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| | -| X | -| | -| X X | -| X X | -| X 6 X | -| X O | -| X X X | -| | -| X X X | -| X X | -| X X | -| X X | -| X X X | -| | -| X X X | -| X X | -| X X | -| X X | -| X | -| | -| | -| | -|--------------------------------------------- - -[MiningEnvironment] Cycle 637 finished in 7 ms, mean is 5. -[WorldModel] Agent 1 carried 3 golds to depot! -[MiningEnvironment] agent miner6 skips! -[miner6] Gold perceived: gold(29,33) -[miner6] All golds=[gold(29,33)], evaluation=[d(0,gold(29,33),in_my_place)] -[miner6] Gold options are [d(0,gold(29,33),in_my_place)]. Next gold is gold(29,33) -[miner6] Handling gold(29,33) now. -[dummy1] No route from 29,34 to 29,33! ---------------------------------------------- -| | -| | -| | -| X XXXXX XXXX XXXX | -| | -| | -| 4 X 3 | -| X X | -| | -| X X X | -| X X X | -| X X X | -| X X X | -| X X X X | -| | -| X X X X | -| X X X X | -| X X X X | -| X X X X | -| X X X X | -| 6 | -| X X | -| X X | -| X X | -| X X | -| X X | -| X X | -| X | -| X X | -| X X | -| | -| X X X | -| X X X | -| X X G | -| X 2 X O | -| X X | -| | -| X X | -| X X | -| X X | -| X X | -| X X | -| 5 | -| X X | -| X X X | -| X X X | -| X X X | -| XXXXX XX X | -| | -| | -| | -|--------------------------------------------- - -[MiningEnvironment] Cycle 638 finished in 7 ms, mean is 5. -[miner6] Picked gold(29,33), I have 3 pieces of gold -[miner6] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 639 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 640 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 641 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 642 finished in 2 ms, mean is 5. -[WorldModel] Agent 12 carried 3 golds to depot! -[MiningEnvironment] Cycle 643 finished in 2 ms, mean is 5. -[miner6] All golds=[], evaluation=[] -[miner6] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 644 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 645 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 646 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 647 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 648 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 649 finished in 12 ms, mean is 5. -[WorldModel] Agent 8 carried 3 golds to depot! -[MiningEnvironment] Cycle 650 finished in 4 ms, mean is 5. -[miner2] All golds=[gold(10,12),gold(12,4),gold(9,13),gold(11,4),gold(12,5),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(46,gold(10,12),not_committed),d(52,gold(12,4),not_committed),d(46,gold(9,13),not_committed),d(53,gold(11,4),not_committed),d(51,gold(12,5),not_committed),d(39,gold(39,7),not_committed),d(45,gold(41,4),not_committed),d(47,gold(43,4),not_committed),d(44,gold(40,4),not_committed)] -[miner2] Gold options are [d(46,gold(10,12),not_committed),d(52,gold(12,4),not_committed),d(46,gold(9,13),not_committed),d(53,gold(11,4),not_committed),d(51,gold(12,5),not_committed),d(39,gold(39,7),not_committed),d(45,gold(41,4),not_committed),d(47,gold(43,4),not_committed),d(44,gold(40,4),not_committed)]. Next gold is gold(39,7) -[miner2] Handling gold(39,7) now. -[MiningEnvironment] Cycle 651 finished in 9 ms, mean is 5. -[MiningEnvironment] Cycle 652 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 653 finished in 3 ms, mean is 5. -[miner6] All golds=[], evaluation=[] -[miner6] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 654 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 655 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 656 finished in 3 ms, mean is 5. -[miner3] in no Q, going to X1 -[miner3] in Q3 to 24x41 -[MiningEnvironment] Cycle 657 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 658 finished in 6 ms, mean is 5. -[MiningEnvironment] Cycle 659 finished in 3 ms, mean is 5. -[miner5] All golds=[], evaluation=[] -[miner5] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 660 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 661 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 662 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 663 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 664 finished in 1 ms, mean is 5. -[MiningEnvironment] Cycle 665 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 666 finished in 0 ms, mean is 5. -[MiningEnvironment] Cycle 667 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 668 finished in 0 ms, mean is 5. -[MiningEnvironment] Cycle 669 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 670 finished in 1 ms, mean is 5. -[MiningEnvironment] Cycle 671 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 672 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 673 finished in 0 ms, mean is 5. -[MiningEnvironment] Cycle 674 finished in 2 ms, mean is 5. -[dummy6] in depot -[MiningEnvironment] Cycle 675 finished in 2 ms, mean is 5. -[WorldModel] Agent 6 carried 3 golds to depot! -[MiningEnvironment] Cycle 676 finished in 0 ms, mean is 5. -[MiningEnvironment] Cycle 677 finished in 0 ms, mean is 5. -[MiningEnvironment] Cycle 678 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 679 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 680 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 681 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 682 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 683 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 684 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 685 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 686 finished in 2 ms, mean is 5. -[dummy1] picked gold! -[MiningEnvironment] Cycle 687 finished in 3 ms, mean is 5. -[miner2] Gold perceived: gold(36,6) -[miner2] All golds=[gold(36,6),gold(10,12),gold(12,4),gold(9,13),gold(11,4),gold(12,5),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(1,gold(36,6),not_committed),d(34,gold(10,12),not_committed),d(29,gold(12,4),not_committed),d(36,gold(9,13),not_committed),d(30,gold(11,4),not_committed),d(28,gold(12,5),not_committed),d(3,gold(39,7),not_committed),d(5,gold(41,7),committed_by(miner1,at(33,30),far(31))),d(8,gold(41,4),not_committed),d(11,gold(43,4),not_committed),d(7,gold(40,4),not_committed),d(34,gold(7,7),committed_by(miner1,at(33,30),far(49)))] -[miner2] Gold options are [d(1,gold(36,6),not_committed),d(34,gold(10,12),not_committed),d(29,gold(12,4),not_committed),d(36,gold(9,13),not_committed),d(30,gold(11,4),not_committed),d(28,gold(12,5),not_committed),d(3,gold(39,7),not_committed),d(5,gold(41,7),committed_by(miner1,at(33,30),far(31))),d(8,gold(41,4),not_committed),d(11,gold(43,4),not_committed),d(7,gold(40,4),not_committed),d(34,gold(7,7),committed_by(miner1,at(33,30),far(49)))]. Next gold is gold(36,6) -[miner2] Gold perceived: gold(37,6) -[miner2] All golds=[gold(37,6),gold(36,6),gold(10,12),gold(12,4),gold(9,13),gold(11,4),gold(12,5),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(2,gold(37,6),not_committed),d(1,gold(36,6),not_committed),d(34,gold(10,12),not_committed),d(29,gold(12,4),not_committed),d(36,gold(9,13),not_committed),d(30,gold(11,4),not_committed),d(28,gold(12,5),not_committed),d(3,gold(39,7),not_committed),d(5,gold(41,7),committed_by(miner1,at(33,30),far(31))),d(8,gold(41,4),not_committed),d(11,gold(43,4),not_committed),d(7,gold(40,4),not_committed),d(34,gold(7,7),committed_by(miner1,at(33,30),far(49)))] -[miner2] Gold options are [d(2,gold(37,6),not_committed),d(1,gold(36,6),not_committed),d(34,gold(10,12),not_committed),d(29,gold(12,4),not_committed),d(36,gold(9,13),not_committed),d(30,gold(11,4),not_committed),d(28,gold(12,5),not_committed),d(3,gold(39,7),not_committed),d(5,gold(41,7),committed_by(miner1,at(33,30),far(31))),d(8,gold(41,4),not_committed),d(11,gold(43,4),not_committed),d(7,gold(40,4),not_committed),d(34,gold(7,7),committed_by(miner1,at(33,30),far(49)))]. Next gold is gold(36,6) -[miner2] Handling gold(36,6) now. -[MiningEnvironment] Cycle 688 finished in 9 ms, mean is 5. -[miner2] Gold perceived: gold(37,5) -[miner3] in Q2 to 0x44 -[miner2] All golds=[gold(37,5),gold(37,6),gold(36,6),gold(10,12),gold(12,4),gold(9,13),gold(11,4),gold(12,5),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(2,gold(37,5),not_committed),d(1,gold(37,6),not_committed),d(0,gold(36,6),in_my_place),d(35,gold(10,12),not_committed),d(28,gold(12,4),not_committed),d(37,gold(9,13),not_committed),d(29,gold(11,4),not_committed),d(27,gold(12,5),not_committed),d(4,gold(39,7),not_committed),d(6,gold(41,7),committed_by(miner1,at(33,31),far(32))),d(7,gold(41,4),not_committed),d(9,gold(43,4),not_committed),d(6,gold(40,4),not_committed),d(33,gold(7,7),committed_by(miner1,at(33,31),far(50)))] -[miner2] Gold options are [d(2,gold(37,5),not_committed),d(1,gold(37,6),not_committed),d(0,gold(36,6),in_my_place),d(35,gold(10,12),not_committed),d(28,gold(12,4),not_committed),d(37,gold(9,13),not_committed),d(29,gold(11,4),not_committed),d(27,gold(12,5),not_committed),d(4,gold(39,7),not_committed),d(6,gold(41,7),committed_by(miner1,at(33,31),far(32))),d(7,gold(41,4),not_committed),d(9,gold(43,4),not_committed),d(6,gold(40,4),not_committed),d(33,gold(7,7),committed_by(miner1,at(33,31),far(50)))]. Next gold is gold(36,6) -[MiningEnvironment] Cycle 689 finished in 7 ms, mean is 5. -[dummy1] picked gold! -[miner2] Picked gold(36,6), I have 1 pieces of gold -[miner2] All golds=[gold(37,5),gold(37,6),gold(10,12),gold(12,4),gold(9,13),gold(11,4),gold(12,5),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(2,gold(37,5),not_committed),d(1,gold(37,6),not_committed),d(39,gold(10,12),not_committed),d(32,gold(12,4),not_committed),d(41,gold(9,13),not_committed),d(33,gold(11,4),not_committed),d(30,gold(12,5),not_committed),d(4,gold(39,7),not_committed),d(7,gold(41,7),committed_by(miner1,at(33,31),far(32))),d(8,gold(41,4),not_committed),d(11,gold(43,4),not_committed),d(7,gold(40,4),not_committed),d(37,gold(7,7),committed_by(miner1,at(33,31),far(50)))] -[miner2] Gold options are [d(2,gold(37,5),not_committed),d(1,gold(37,6),not_committed),d(39,gold(10,12),not_committed),d(32,gold(12,4),not_committed),d(41,gold(9,13),not_committed),d(33,gold(11,4),not_committed),d(30,gold(12,5),not_committed),d(4,gold(39,7),not_committed),d(7,gold(41,7),committed_by(miner1,at(33,31),far(32))),d(8,gold(41,4),not_committed),d(11,gold(43,4),not_committed),d(7,gold(40,4),not_committed),d(37,gold(7,7),committed_by(miner1,at(33,31),far(50)))]. Next gold is gold(37,6) -[miner2] Handling gold(37,6) now. -[MiningEnvironment] Cycle 690 finished in 8 ms, mean is 5. -[miner2] Gold perceived: gold(38,5) -[miner2] All golds=[gold(38,5),gold(37,5),gold(37,6),gold(10,12),gold(12,4),gold(9,13),gold(11,4),gold(12,5),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(2,gold(38,5),not_committed),d(1,gold(37,5),not_committed),d(0,gold(37,6),in_my_place),d(40,gold(10,12),not_committed),d(33,gold(12,4),not_committed),d(43,gold(9,13),not_committed),d(34,gold(11,4),not_committed),d(32,gold(12,5),not_committed),d(3,gold(39,7),not_committed),d(6,gold(41,7),committed_by(miner1,at(33,31),far(32))),d(7,gold(41,4),not_committed),d(9,gold(43,4),not_committed),d(6,gold(40,4),not_committed),d(38,gold(7,7),committed_by(miner1,at(33,31),far(50)))] -[miner2] Gold options are [d(2,gold(38,5),not_committed),d(1,gold(37,5),not_committed),d(0,gold(37,6),in_my_place),d(40,gold(10,12),not_committed),d(33,gold(12,4),not_committed),d(43,gold(9,13),not_committed),d(34,gold(11,4),not_committed),d(32,gold(12,5),not_committed),d(3,gold(39,7),not_committed),d(6,gold(41,7),committed_by(miner1,at(33,31),far(32))),d(7,gold(41,4),not_committed),d(9,gold(43,4),not_committed),d(6,gold(40,4),not_committed),d(38,gold(7,7),committed_by(miner1,at(33,31),far(50)))]. Next gold is gold(37,6) -[miner2] Gold perceived: gold(38,6) -[miner2] All golds=[gold(38,6),gold(38,5),gold(37,5),gold(37,6),gold(10,12),gold(12,4),gold(9,13),gold(11,4),gold(12,5),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(1,gold(38,6),not_committed),d(2,gold(38,5),not_committed),d(1,gold(37,5),not_committed),d(0,gold(37,6),in_my_place),d(40,gold(10,12),not_committed),d(33,gold(12,4),not_committed),d(43,gold(9,13),not_committed),d(34,gold(11,4),not_committed),d(32,gold(12,5),not_committed),d(3,gold(39,7),not_committed),d(6,gold(41,7),committed_by(miner1,at(33,31),far(32))),d(7,gold(41,4),not_committed),d(9,gold(43,4),not_committed),d(6,gold(40,4),not_committed),d(38,gold(7,7),committed_by(miner1,at(33,31),far(50)))] -[miner2] Gold options are [d(1,gold(38,6),not_committed),d(2,gold(38,5),not_committed),d(1,gold(37,5),not_committed),d(0,gold(37,6),in_my_place),d(40,gold(10,12),not_committed),d(33,gold(12,4),not_committed),d(43,gold(9,13),not_committed),d(34,gold(11,4),not_committed),d(32,gold(12,5),not_committed),d(3,gold(39,7),not_committed),d(6,gold(41,7),committed_by(miner1,at(33,31),far(32))),d(7,gold(41,4),not_committed),d(9,gold(43,4),not_committed),d(6,gold(40,4),not_committed),d(38,gold(7,7),committed_by(miner1,at(33,31),far(50)))]. Next gold is gold(37,6) -[MiningEnvironment] Cycle 691 finished in 9 ms, mean is 5. -[miner2] Gold perceived: gold(38,7) -[miner2] All golds=[gold(38,7),gold(38,6),gold(38,5),gold(37,5),gold(37,6),gold(10,12),gold(12,4),gold(9,13),gold(11,4),gold(12,5),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(2,gold(38,7),not_committed),d(1,gold(38,6),not_committed),d(2,gold(38,5),not_committed),d(1,gold(37,5),not_committed),d(0,gold(37,6),in_my_place),d(45,gold(10,12),not_committed),d(36,gold(12,4),not_committed),d(47,gold(9,13),not_committed),d(38,gold(11,4),not_committed),d(35,gold(12,5),not_committed),d(4,gold(39,7),not_committed),d(6,gold(41,7),committed_by(miner1,at(33,31),far(32))),d(8,gold(41,4),not_committed),d(10,gold(43,4),not_committed),d(6,gold(40,4),not_committed),d(42,gold(7,7),committed_by(miner1,at(33,31),far(50)))] -[miner2] Gold options are [d(2,gold(38,7),not_committed),d(1,gold(38,6),not_committed),d(2,gold(38,5),not_committed),d(1,gold(37,5),not_committed),d(0,gold(37,6),in_my_place),d(45,gold(10,12),not_committed),d(36,gold(12,4),not_committed),d(47,gold(9,13),not_committed),d(38,gold(11,4),not_committed),d(35,gold(12,5),not_committed),d(4,gold(39,7),not_committed),d(6,gold(41,7),committed_by(miner1,at(33,31),far(32))),d(8,gold(41,4),not_committed),d(10,gold(43,4),not_committed),d(6,gold(40,4),not_committed),d(42,gold(7,7),committed_by(miner1,at(33,31),far(50)))]. Next gold is gold(37,6) -[miner2] Picked gold(37,6), I have 2 pieces of gold -[miner2] All golds=[gold(38,7),gold(38,6),gold(38,5),gold(37,5),gold(10,12),gold(12,4),gold(9,13),gold(11,4),gold(12,5),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(2,gold(38,7),not_committed),d(1,gold(38,6),not_committed),d(2,gold(38,5),not_committed),d(1,gold(37,5),not_committed),d(45,gold(10,12),not_committed),d(36,gold(12,4),not_committed),d(47,gold(9,13),not_committed),d(38,gold(11,4),not_committed),d(35,gold(12,5),not_committed),d(4,gold(39,7),not_committed),d(6,gold(41,7),committed_by(miner1,at(33,31),far(32))),d(8,gold(41,4),not_committed),d(10,gold(43,4),not_committed),d(6,gold(40,4),not_committed),d(42,gold(7,7),committed_by(miner1,at(33,31),far(50)))] -[miner2] Gold options are [d(2,gold(38,7),not_committed),d(1,gold(38,6),not_committed),d(2,gold(38,5),not_committed),d(1,gold(37,5),not_committed),d(45,gold(10,12),not_committed),d(36,gold(12,4),not_committed),d(47,gold(9,13),not_committed),d(38,gold(11,4),not_committed),d(35,gold(12,5),not_committed),d(4,gold(39,7),not_committed),d(6,gold(41,7),committed_by(miner1,at(33,31),far(32))),d(8,gold(41,4),not_committed),d(10,gold(43,4),not_committed),d(6,gold(40,4),not_committed),d(42,gold(7,7),committed_by(miner1,at(33,31),far(50)))]. Next gold is gold(37,5) -[miner2] Handling gold(37,5) now. -[MiningEnvironment] Cycle 692 finished in 11 ms, mean is 5. -[miner2] Picked gold(37,5), I have 2 pieces of gold -[miner2] All golds=[gold(38,7),gold(38,6),gold(38,5),gold(10,12),gold(12,4),gold(9,13),gold(11,4),gold(12,5),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(4,gold(38,7),not_committed),d(2,gold(38,6),not_committed),d(1,gold(38,5),not_committed),d(46,gold(10,12),not_committed),d(38,gold(12,4),not_committed),d(49,gold(9,13),not_committed),d(39,gold(11,4),not_committed),d(36,gold(12,5),not_committed),d(5,gold(39,7),not_committed),d(8,gold(41,7),committed_by(miner1,at(32,31),far(33))),d(6,gold(41,4),not_committed),d(9,gold(43,4),not_committed),d(5,gold(40,4),not_committed),d(43,gold(7,7),committed_by(miner1,at(32,31),far(49)))] -[miner2] Gold options are [d(4,gold(38,7),not_committed),d(2,gold(38,6),not_committed),d(1,gold(38,5),not_committed),d(46,gold(10,12),not_committed),d(38,gold(12,4),not_committed),d(49,gold(9,13),not_committed),d(39,gold(11,4),not_committed),d(36,gold(12,5),not_committed),d(5,gold(39,7),not_committed),d(8,gold(41,7),committed_by(miner1,at(32,31),far(33))),d(6,gold(41,4),not_committed),d(9,gold(43,4),not_committed),d(5,gold(40,4),not_committed),d(43,gold(7,7),committed_by(miner1,at(32,31),far(49)))]. Next gold is gold(38,5) -[miner2] Handling gold(38,5) now. -[MiningEnvironment] Cycle 693 finished in 7 ms, mean is 5. -[MiningEnvironment] Cycle 694 finished in 3 ms, mean is 5. -[miner2] Gold perceived: gold(37,5) -[miner2] All golds=[gold(37,5),gold(38,7),gold(38,6),gold(38,5),gold(10,12),gold(12,4),gold(9,13),gold(11,4),gold(12,5),gold(39,7),gold(41,7),gold(41,4),gold(43,4),gold(40,4),gold(7,7)], evaluation=[d(0,gold(37,5),in_my_place),d(4,gold(38,7),not_committed),d(2,gold(38,6),not_committed),d(1,gold(38,5),not_committed),d(46,gold(10,12),not_committed),d(38,gold(12,4),not_committed),d(49,gold(9,13),not_committed),d(39,gold(11,4),not_committed),d(36,gold(12,5),not_committed),d(5,gold(39,7),not_committed),d(8,gold(41,7),committed_by(miner1,at(32,31),far(33))),d(6,gold(41,4),not_committed),d(9,gold(43,4),not_committed),d(5,gold(40,4),not_committed),d(43,gold(7,7),committed_by(miner1,at(32,31),far(49)))] -[miner2] Gold options are [d(0,gold(37,5),in_my_place),d(4,gold(38,7),not_committed),d(2,gold(38,6),not_committed),d(1,gold(38,5),not_committed),d(46,gold(10,12),not_committed),d(38,gold(12,4),not_committed),d(49,gold(9,13),not_committed),d(39,gold(11,4),not_committed),d(36,gold(12,5),not_committed),d(5,gold(39,7),not_committed),d(8,gold(41,7),committed_by(miner1,at(32,31),far(33))),d(6,gold(41,4),not_committed),d(9,gold(43,4),not_committed),d(5,gold(40,4),not_committed),d(43,gold(7,7),committed_by(miner1,at(32,31),far(49)))]. Next gold is gold(37,5) -[miner2] Handling gold(37,5) now. -[MiningEnvironment] Cycle 695 finished in 7 ms, mean is 5. -[dummy1] picked gold! -[miner2] Picked gold(37,5), I have 3 pieces of gold -[miner2] Going to depot to deliver 3 golds. -[miner2] Announcing gold(38,7), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner2] Announcing gold(38,6), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner2] Announcing gold(38,5), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 696 finished in 7 ms, mean is 5. -[MiningEnvironment] Cycle 697 finished in 7 ms, mean is 5. -[MiningEnvironment] Cycle 698 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 699 finished in 5 ms, mean is 5. -[dummy5] in depot -[MiningEnvironment] Cycle 700 finished in 4 ms, mean is 5. -[WorldModel] Agent 5 carried 3 golds to depot! -[MiningEnvironment] Cycle 701 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 702 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 703 finished in 6 ms, mean is 5. -[MiningEnvironment] Cycle 704 finished in 7 ms, mean is 5. -[MiningEnvironment] Cycle 705 finished in 3 ms, mean is 5. -[WorldModel] Agent 7 carried 3 golds to depot! -[MiningEnvironment] Cycle 706 finished in 5 ms, mean is 5. -[miner2] *** Start it all again! -[miner2] Going to depot to deliver 3 golds. -[miner1] All golds=[gold(38,5),gold(38,6),gold(38,7),gold(12,5),gold(11,4),gold(12,4),gold(9,13),gold(39,7),gold(40,4),gold(43,4),gold(41,4),gold(41,7),gold(7,7),gold(10,12),gold(9,11),gold(8,11),gold(7,11)], evaluation=[d(39,gold(38,6),not_committed),d(38,gold(38,7),not_committed),d(51,gold(12,5),not_committed),d(53,gold(11,4),not_committed),d(52,gold(12,4),not_committed),d(46,gold(9,13),not_committed),d(44,gold(40,4),not_committed),d(47,gold(43,4),not_committed),d(45,gold(41,4),not_committed),d(41,gold(41,7),not_committed),d(55,gold(7,7),not_committed),d(46,gold(10,12),not_committed),d(48,gold(9,11),not_committed),d(49,gold(8,11),not_committed),d(50,gold(7,11),not_committed)] -[miner1] Gold options are [d(39,gold(38,6),not_committed),d(38,gold(38,7),not_committed),d(51,gold(12,5),not_committed),d(53,gold(11,4),not_committed),d(52,gold(12,4),not_committed),d(46,gold(9,13),not_committed),d(44,gold(40,4),not_committed),d(47,gold(43,4),not_committed),d(45,gold(41,4),not_committed),d(41,gold(41,7),not_committed),d(55,gold(7,7),not_committed),d(46,gold(10,12),not_committed),d(48,gold(9,11),not_committed),d(49,gold(8,11),not_committed),d(50,gold(7,11),not_committed)]. Next gold is gold(38,7) -[miner1] Handling gold(38,7) now. -[MiningEnvironment] Cycle 707 finished in 9 ms, mean is 5. -[MiningEnvironment] Cycle 708 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 709 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 710 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 711 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 712 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 713 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 714 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 715 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 716 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 717 finished in 2 ms, mean is 5. -[dummy3] in depot -[MiningEnvironment] Cycle 718 finished in 3 ms, mean is 5. -[WorldModel] Agent 3 carried 3 golds to depot! -[miner5] Gold perceived: gold(12,50) -[miner5] All golds=[gold(12,50)], evaluation=[d(1,gold(12,50),not_committed)] -[miner5] Gold options are [d(1,gold(12,50),not_committed)]. Next gold is gold(12,50) -[dummy4] in depot -[miner5] Dropping search_gold desires and intentions to handle gold -[miner5] Handling gold(12,50) now. -[MiningEnvironment] Cycle 719 finished in 3 ms, mean is 5. -[WorldModel] Agent 4 carried 3 golds to depot! -[miner5] Picked gold(12,50), I have 0 pieces of gold -[miner5] All golds=[], evaluation=[] -[miner5] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 720 finished in 2 ms, mean is 5. -[miner5] Gold perceived: gold(12,50) -[miner5] All golds=[gold(12,50)], evaluation=[d(1,gold(12,50),not_committed)] -[miner5] Gold options are [d(1,gold(12,50),not_committed)]. Next gold is gold(12,50) -[miner5] Dropping search_gold desires and intentions to handle gold -[miner5] Handling gold(12,50) now. -[MiningEnvironment] Cycle 721 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 722 finished in 2 ms, mean is 5. -[miner5] Picked gold(12,50), I have 1 pieces of gold -[miner5] All golds=[], evaluation=[] -[miner5] Going to depot to deliver 1 golds. -[MiningEnvironment] Cycle 723 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 724 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 725 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 726 finished in 2 ms, mean is 5. -[miner5] Gold perceived: gold(14,48) -[miner5] All golds=[gold(14,48)], evaluation=[d(1,gold(14,48),not_committed)] -[miner5] Gold options are [d(1,gold(14,48),not_committed)]. Next gold is gold(14,48) -[miner5] Handling gold(14,48) now. -[miner3] in Q3 to 24x47 -[MiningEnvironment] Cycle 727 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 728 finished in 2 ms, mean is 5. -[miner5] Picked gold(14,48), I have 2 pieces of gold -[miner5] All golds=[], evaluation=[] -[miner5] Going to depot to deliver 2 golds. -[MiningEnvironment] Cycle 729 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 730 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 731 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 732 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 733 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 734 finished in 1 ms, mean is 5. -[MiningEnvironment] Cycle 735 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 736 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 737 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 738 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 739 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 740 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 741 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 742 finished in 1 ms, mean is 5. -[MiningEnvironment] Cycle 743 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 744 finished in 2 ms, mean is 5. -[miner1] Picked gold(38,7), I have 0 pieces of gold -[miner1] All golds=[gold(38,5),gold(38,6),gold(12,5),gold(11,4),gold(12,4),gold(9,13),gold(39,7),gold(40,4),gold(43,4),gold(41,4),gold(41,7),gold(7,7),gold(10,12),gold(9,11),gold(8,11),gold(7,11)], evaluation=[d(2,gold(38,5),committed_by(miner2,at(29,23),far(27))),d(1,gold(38,6),not_committed),d(30,gold(12,5),not_committed),d(33,gold(11,4),not_committed),d(31,gold(12,4),not_committed),d(38,gold(9,13),not_committed),d(1,gold(39,7),committed_by(miner2,at(29,23),far(26))),d(5,gold(40,4),not_committed),d(8,gold(43,4),not_committed),d(6,gold(41,4),not_committed),d(3,gold(41,7),not_committed),d(36,gold(7,7),not_committed),d(36,gold(10,12),not_committed),d(36,gold(9,11),not_committed),d(37,gold(8,11),not_committed),d(38,gold(7,11),not_committed)] -[miner1] Gold options are [d(2,gold(38,5),committed_by(miner2,at(29,23),far(27))),d(1,gold(38,6),not_committed),d(30,gold(12,5),not_committed),d(33,gold(11,4),not_committed),d(31,gold(12,4),not_committed),d(38,gold(9,13),not_committed),d(1,gold(39,7),committed_by(miner2,at(29,23),far(26))),d(5,gold(40,4),not_committed),d(8,gold(43,4),not_committed),d(6,gold(41,4),not_committed),d(3,gold(41,7),not_committed),d(36,gold(7,7),not_committed),d(36,gold(10,12),not_committed),d(36,gold(9,11),not_committed),d(37,gold(8,11),not_committed),d(38,gold(7,11),not_committed)]. Next gold is gold(38,6) -[miner1] Handling gold(38,6) now. -[MiningEnvironment] Cycle 745 finished in 5 ms, mean is 5. -[miner1] Gold perceived: gold(38,7) -[miner1] All golds=[gold(38,7),gold(38,5),gold(38,6),gold(12,5),gold(11,4),gold(12,4),gold(9,13),gold(39,7),gold(40,4),gold(43,4),gold(41,4),gold(41,7),gold(7,7),gold(10,12),gold(9,11),gold(8,11),gold(7,11)], evaluation=[d(1,gold(38,7),not_committed),d(1,gold(38,5),committed_by(miner2,at(29,24),far(28))),d(0,gold(38,6),in_my_place),d(29,gold(12,5),not_committed),d(31,gold(11,4),not_committed),d(30,gold(12,4),not_committed),d(39,gold(9,13),not_committed),d(2,gold(39,7),committed_by(miner2,at(29,24),far(27))),d(4,gold(40,4),not_committed),d(7,gold(43,4),not_committed),d(5,gold(41,4),not_committed),d(4,gold(41,7),not_committed),d(35,gold(7,7),not_committed),d(37,gold(10,12),not_committed),d(37,gold(9,11),not_committed),d(38,gold(8,11),not_committed),d(39,gold(7,11),not_committed)] -[miner1] Gold options are [d(1,gold(38,7),not_committed),d(1,gold(38,5),committed_by(miner2,at(29,24),far(28))),d(0,gold(38,6),in_my_place),d(29,gold(12,5),not_committed),d(31,gold(11,4),not_committed),d(30,gold(12,4),not_committed),d(39,gold(9,13),not_committed),d(2,gold(39,7),committed_by(miner2,at(29,24),far(27))),d(4,gold(40,4),not_committed),d(7,gold(43,4),not_committed),d(5,gold(41,4),not_committed),d(4,gold(41,7),not_committed),d(35,gold(7,7),not_committed),d(37,gold(10,12),not_committed),d(37,gold(9,11),not_committed),d(38,gold(8,11),not_committed),d(39,gold(7,11),not_committed)]. Next gold is gold(38,6) -[MiningEnvironment] Cycle 746 finished in 7 ms, mean is 5. -[miner1] Picked gold(38,6), I have 1 pieces of gold -[miner1] All golds=[gold(38,7),gold(38,5),gold(12,5),gold(11,4),gold(12,4),gold(9,13),gold(39,7),gold(40,4),gold(43,4),gold(41,4),gold(41,7),gold(7,7),gold(10,12),gold(9,11),gold(8,11),gold(7,11)], evaluation=[d(1,gold(38,7),not_committed),d(1,gold(38,5),committed_by(miner2,at(29,25),far(29))),d(33,gold(12,5),not_committed),d(35,gold(11,4),not_committed),d(34,gold(12,4),not_committed),d(44,gold(9,13),not_committed),d(2,gold(39,7),committed_by(miner2,at(29,25),far(28))),d(4,gold(40,4),not_committed),d(8,gold(43,4),not_committed),d(6,gold(41,4),not_committed),d(4,gold(41,7),not_committed),d(39,gold(7,7),not_committed),d(41,gold(10,12),not_committed),d(41,gold(9,11),not_committed),d(43,gold(8,11),not_committed),d(44,gold(7,11),not_committed)] -[miner1] Gold options are [d(1,gold(38,7),not_committed),d(1,gold(38,5),committed_by(miner2,at(29,25),far(29))),d(33,gold(12,5),not_committed),d(35,gold(11,4),not_committed),d(34,gold(12,4),not_committed),d(44,gold(9,13),not_committed),d(2,gold(39,7),committed_by(miner2,at(29,25),far(28))),d(4,gold(40,4),not_committed),d(8,gold(43,4),not_committed),d(6,gold(41,4),not_committed),d(4,gold(41,7),not_committed),d(39,gold(7,7),not_committed),d(41,gold(10,12),not_committed),d(41,gold(9,11),not_committed),d(43,gold(8,11),not_committed),d(44,gold(7,11),not_committed)]. Next gold is gold(38,5) -[miner1] Handling gold(38,5) now. -[MiningEnvironment] Cycle 747 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 748 finished in 2 ms, mean is 5. -[dummy5] picked gold! -[miner1] Picked gold(38,5), I have 2 pieces of gold -[miner1] All golds=[gold(38,7),gold(12,5),gold(11,4),gold(12,4),gold(9,13),gold(39,7),gold(40,4),gold(43,4),gold(41,4),gold(41,7),gold(7,7),gold(10,12),gold(9,11),gold(8,11),gold(7,11)], evaluation=[d(2,gold(38,7),not_committed),d(38,gold(12,5),not_committed),d(41,gold(11,4),not_committed),d(39,gold(12,4),not_committed),d(50,gold(9,13),not_committed),d(4,gold(39,7),committed_by(miner2,at(29,26),far(29))),d(4,gold(40,4),not_committed),d(8,gold(43,4),not_committed),d(5,gold(41,4),not_committed),d(6,gold(41,7),not_committed),d(45,gold(7,7),not_committed),d(47,gold(10,12),not_committed),d(47,gold(9,11),not_committed),d(49,gold(8,11),not_committed),d(50,gold(7,11),not_committed)] -[miner1] Gold options are [d(2,gold(38,7),not_committed),d(38,gold(12,5),not_committed),d(41,gold(11,4),not_committed),d(39,gold(12,4),not_committed),d(50,gold(9,13),not_committed),d(4,gold(39,7),committed_by(miner2,at(29,26),far(29))),d(4,gold(40,4),not_committed),d(8,gold(43,4),not_committed),d(5,gold(41,4),not_committed),d(6,gold(41,7),not_committed),d(45,gold(7,7),not_committed),d(47,gold(10,12),not_committed),d(47,gold(9,11),not_committed),d(49,gold(8,11),not_committed),d(50,gold(7,11),not_committed)]. Next gold is gold(38,7) -[miner1] Handling gold(38,7) now. -[MiningEnvironment] Cycle 749 finished in 6 ms, mean is 5. -[dummy5] picked gold! -[MiningEnvironment] Cycle 750 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 751 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 752 finished in 1 ms, mean is 5. -[MiningEnvironment] Cycle 753 finished in 1 ms, mean is 5. -[miner1] Picked gold(38,7), I have 3 pieces of gold -[miner3] Gold perceived: gold(19,48) -[miner3] All golds=[gold(19,48)], evaluation=[d(2,gold(19,48),not_committed)] -[miner3] Gold options are [d(2,gold(19,48),not_committed)]. Next gold is gold(19,48) -[miner1] Going to depot to deliver 3 golds. -[miner3] Dropping around(_,_) desires and intentions to handle gold -[miner3] Handling gold(19,48) now. -[MiningEnvironment] Cycle 754 finished in 3 ms, mean is 5. -[miner3] Gold perceived: gold(17,49) -[miner3] All golds=[gold(17,49),gold(19,48)], evaluation=[d(2,gold(17,49),not_committed),d(1,gold(19,48),not_committed)] -[miner3] Gold options are [d(2,gold(17,49),not_committed),d(1,gold(19,48),not_committed)]. Next gold is gold(19,48) -[miner3] Gold perceived: gold(18,49) -[miner3] All golds=[gold(18,49),gold(17,49),gold(19,48)], evaluation=[d(1,gold(18,49),not_committed),d(2,gold(17,49),not_committed),d(1,gold(19,48),not_committed)] -[miner3] Gold options are [d(1,gold(18,49),not_committed),d(2,gold(17,49),not_committed),d(1,gold(19,48),not_committed)]. Next gold is gold(18,49) -[miner3] Handling gold(18,49) now. -[MiningEnvironment] Cycle 755 finished in 3 ms, mean is 5. -[miner3] Gold perceived: gold(18,50) -[miner3] All golds=[gold(18,50),gold(18,49),gold(17,49),gold(19,48)], evaluation=[d(1,gold(18,50),not_committed),d(0,gold(18,49),in_my_place),d(1,gold(17,49),not_committed),d(2,gold(19,48),not_committed)] -[miner3] Gold options are [d(1,gold(18,50),not_committed),d(0,gold(18,49),in_my_place),d(1,gold(17,49),not_committed),d(2,gold(19,48),not_committed)]. Next gold is gold(18,49) -[MiningEnvironment] Cycle 756 finished in 3 ms, mean is 5. -[miner3] Picked gold(18,49), I have 1 pieces of gold -[miner3] All golds=[gold(18,50),gold(17,49),gold(19,48)], evaluation=[d(1,gold(18,50),not_committed),d(1,gold(17,49),not_committed),d(2,gold(19,48),not_committed)] -[miner3] Gold options are [d(1,gold(18,50),not_committed),d(1,gold(17,49),not_committed),d(2,gold(19,48),not_committed)]. Next gold is gold(17,49) -[miner3] Handling gold(17,49) now. -[MiningEnvironment] Cycle 757 finished in 11 ms, mean is 5. -[miner3] Gold perceived: gold(16,49) -[miner3] All golds=[gold(16,49),gold(18,50),gold(17,49),gold(19,48)], evaluation=[d(1,gold(16,49),not_committed),d(2,gold(18,50),not_committed),d(0,gold(17,49),in_my_place),d(3,gold(19,48),not_committed)] -[miner3] Gold options are [d(1,gold(16,49),not_committed),d(2,gold(18,50),not_committed),d(0,gold(17,49),in_my_place),d(3,gold(19,48),not_committed)]. Next gold is gold(17,49) -[MiningEnvironment] Cycle 758 finished in 8 ms, mean is 5. -[miner3] Picked gold(17,49), I have 2 pieces of gold -[miner3] All golds=[gold(16,49),gold(18,50),gold(19,48)], evaluation=[d(1,gold(16,49),not_committed),d(2,gold(18,50),not_committed),d(4,gold(19,48),not_committed)] -[miner3] Gold options are [d(1,gold(16,49),not_committed),d(2,gold(18,50),not_committed),d(4,gold(19,48),not_committed)]. Next gold is gold(16,49) -[miner3] Handling gold(16,49) now. -[MiningEnvironment] Cycle 759 finished in 8 ms, mean is 5. -[miner3] Picked gold(16,49), I have 2 pieces of gold -[miner3] All golds=[gold(18,50),gold(19,48)], evaluation=[d(4,gold(18,50),not_committed),d(5,gold(19,48),not_committed)] -[miner3] Gold options are [d(4,gold(18,50),not_committed),d(5,gold(19,48),not_committed)]. Next gold is gold(18,50) -[miner3] Handling gold(18,50) now. -[MiningEnvironment] Cycle 760 finished in 6 ms, mean is 5. -[miner2] *** Start it all again! -[miner2] Going to depot to deliver 3 golds. -[miner3] Gold perceived: gold(16,49) -[miner3] All golds=[gold(16,49),gold(18,50),gold(19,48)], evaluation=[d(0,gold(16,49),in_my_place),d(4,gold(18,50),not_committed),d(5,gold(19,48),not_committed)] -[dummy3] picked gold! -[miner3] Gold options are [d(0,gold(16,49),in_my_place),d(4,gold(18,50),not_committed),d(5,gold(19,48),not_committed)]. Next gold is gold(16,49) -[miner3] Handling gold(16,49) now. -[MiningEnvironment] Cycle 761 finished in 6 ms, mean is 5. -[miner3] Picked gold(16,49), I have 3 pieces of gold -[miner3] Going to depot to deliver 3 golds. -[miner3] Announcing gold(18,50), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner3] Announcing gold(19,48), since I am going to depot and that gold was not handled by me (although I perceived it). -[miner1] *** Start it all again! -[miner1] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 762 finished in 6 ms, mean is 5. -[dummy6] picked gold! -[miner1] Announcing gold(39,7) to others -[MiningEnvironment] Cycle 763 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 764 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 765 finished in 4 ms, mean is 5. -[dummy3] picked gold! -[MiningEnvironment] Cycle 766 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 767 finished in 7 ms, mean is 5. -[MiningEnvironment] Cycle 768 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 769 finished in 5 ms, mean is 5. -[WorldModel] Agent 8 carried 3 golds to depot! -[dummy3] picked gold! -[MiningEnvironment] Cycle 770 finished in 3 ms, mean is 5. -[miner2] All golds=[gold(39,7),gold(19,48),gold(18,50)], evaluation=[d(39,gold(39,7),not_committed)] -[miner2] Gold options are [d(39,gold(39,7),not_committed)]. Next gold is gold(39,7) -[miner2] Handling gold(39,7) now. -[MiningEnvironment] Cycle 771 finished in 6 ms, mean is 5. -[MiningEnvironment] Cycle 772 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 773 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 774 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 775 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 776 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 777 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 778 finished in 4 ms, mean is 5. -[WorldModel] Agent 11 carried 2 golds to depot! -[MiningEnvironment] Cycle 779 finished in 2 ms, mean is 5. -[miner5] All golds=[], evaluation=[] -[miner5] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 780 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 781 finished in 2 ms, mean is 5. -[dummy1] in depot -[MiningEnvironment] Cycle 782 finished in 2 ms, mean is 5. -[WorldModel] Agent 1 carried 3 golds to depot! -[MiningEnvironment] Cycle 783 finished in 4 ms, mean is 5. -[dummy4] picked gold! -[MiningEnvironment] Cycle 784 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 785 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 786 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 787 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 788 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 789 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 790 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 791 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 792 finished in 4 ms, mean is 5. -[miner1] *** Start it all again! -[miner1] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 793 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 794 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 795 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 796 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 797 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 798 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 799 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 800 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 801 finished in 2 ms, mean is 5. -[dummy4] picked gold! -[MiningEnvironment] Cycle 802 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 803 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 804 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 805 finished in 2 ms, mean is 5. -[WorldModel] Agent 9 carried 3 golds to depot! -[MiningEnvironment] Cycle 806 finished in 2 ms, mean is 5. -[miner3] All golds=[gold(39,7),gold(18,50),gold(19,48)], evaluation=[d(30,gold(18,50),not_committed),d(27,gold(19,48),not_committed)] -[miner3] Gold options are [d(30,gold(18,50),not_committed),d(27,gold(19,48),not_committed)]. Next gold is gold(19,48) -[miner3] Handling gold(19,48) now. -[MiningEnvironment] Cycle 807 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 808 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 809 finished in 3 ms, mean is 5. -[MiningEnvironment] Cycle 810 finished in 2 ms, mean is 5. -[miner2] Picked gold(39,7), I have 1 pieces of gold -[miner2] All golds=[gold(19,48),gold(18,50)], evaluation=[] -[miner2] Going to depot to deliver 1 golds. -[MiningEnvironment] Cycle 811 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 812 finished in 5 ms, mean is 5. -[MiningEnvironment] Cycle 813 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 814 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 815 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 816 finished in 4 ms, mean is 5. -[MiningEnvironment] Cycle 817 finished in 2 ms, mean is 5. -[MiningEnvironment] Cycle 818 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 819 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 820 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 821 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 822 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 823 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 824 finished in 1 ms, mean is 4. -[miner1] *** Start it all again! -[miner1] Going to depot to deliver 3 golds. -[MiningEnvironment] Cycle 825 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 826 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 827 finished in 2 ms, mean is 4. -[WorldModel] Agent 7 carried 3 golds to depot! -[MiningEnvironment] Cycle 828 finished in 3 ms, mean is 4. -[miner1] All golds=[], evaluation=[] -[miner1] New goal is find gold: quadrant -[MiningEnvironment] Cycle 829 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 830 finished in 3 ms, mean is 4. -[dummy5] in depot -[MiningEnvironment] Cycle 831 finished in 5 ms, mean is 4. -[WorldModel] Agent 5 carried 1 golds to depot! -[MiningEnvironment] Cycle 832 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 833 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 834 finished in 2 ms, mean is 4. -[miner3] Picked gold(19,48), I have 1 pieces of gold -[miner3] All golds=[gold(18,50)], evaluation=[d(3,gold(18,50),not_committed)] -[miner3] Gold options are [d(3,gold(18,50),not_committed)]. Next gold is gold(18,50) -[miner3] Handling gold(18,50) now. -[MiningEnvironment] Cycle 835 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 836 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 837 finished in 2 ms, mean is 4. -[dummy6] in depot -[MiningEnvironment] Cycle 838 finished in 2 ms, mean is 4. -[miner3] Picked gold(18,50), I have 2 pieces of gold -[dummy3] in depot -[miner3] All golds=[], evaluation=[] -[miner3] Going to depot to deliver 2 golds. -[MiningEnvironment] Cycle 839 finished in 3 ms, mean is 4. -[WorldModel] Agent 3 carried 3 golds to depot! -[dummy6] picked gold! -[MiningEnvironment] Cycle 840 finished in 2 ms, mean is 4. -[dummy6] in depot -[MiningEnvironment] Cycle 841 finished in 2 ms, mean is 4. -[WorldModel] Agent 6 carried 1 golds to depot! -[MiningEnvironment] Cycle 842 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 843 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 844 finished in 2 ms, mean is 4. -[dummy1] picked gold! -[MiningEnvironment] Cycle 845 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 846 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 847 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 848 finished in 1 ms, mean is 4. -[dummy1] picked gold! -[MiningEnvironment] Cycle 849 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 850 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 851 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 852 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 853 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 854 finished in 2 ms, mean is 4. -[dummy1] picked gold! -[MiningEnvironment] Cycle 855 finished in 2 ms, mean is 4. -[dummy4] in depot -[miner2] No route from 30,34 to 29,34! ---------------------------------------------- -| | -| | -| | -| XXX X | -| X X | -| X | -| | -| X X | -| | -| X X | -| X X | -| X X | -| X X X | -| X X X | -| | -| X X 4 X | -| X X X X | -| X X X X | -| X X X X | -| X X X X 6| -| | -| X X | -| X X | -| X X | -| X 1 X | -| X 5 X | -| X X | -| X X | -| X X | -| X X | -| | -| X X X | -| X X X | -| X X X | -| X X O2 X | -| X X X | -| | -| X X X | -| X X X | -| X X X | -| X X X | -| X X X | -| 3 | -| X X X | -| X X X | -| X X X | -| X X X | -| XXXXX XX X | -| | -| | -| | -|--------------------------------------------- - -[MiningEnvironment] Cycle 856 finished in 6 ms, mean is 4. -[WorldModel] Agent 4 carried 2 golds to depot! -[MiningEnvironment] agent miner2 skips! -[dummy1] picked gold! -[miner2] No route from 30,34 to 29,34! ---------------------------------------------- -| | -| | -| | -| XXX X | -| X X | -| X | -| | -| X X | -| | -| X X | -| X X | -| X X | -| X X X | -| X X X | -| | -| X X 4 X | -| X X X X | -| X X X X | -| X X X X 6| -| X X X X | -| | -| X X | -| X X | -| X X | -| X 1 X | -| X 5 X | -| X X | -| X X | -| X X | -| X X | -| | -| X X X | -| X X X | -| X X X | -| X X O2 X | -| X X X | -| | -| X X X | -| X X X | -| X X X | -| X X X | -| X X X | -| 3 | -| X X X | -| X X X | -| X X X | -| X X X | -| XXXXX XX X | -| | -| | -| | -|--------------------------------------------- - -[MiningEnvironment] Cycle 857 finished in 6 ms, mean is 4. -[MiningEnvironment] agent miner2 skips! -[MiningEnvironment] Cycle 858 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 859 finished in 1 ms, mean is 4. -[WorldModel] Agent 8 carried 1 golds to depot! -[MiningEnvironment] Cycle 860 finished in 2 ms, mean is 4. -[miner2] All golds=[], evaluation=[] -[miner2] New goal is find gold: quadrant -[MiningEnvironment] Cycle 861 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 862 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 863 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 864 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 865 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 866 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 867 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 868 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 869 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 870 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 871 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 872 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 873 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 874 finished in 2 ms, mean is 4. -[miner1] in no Q, going to X1 -[MiningEnvironment] Cycle 875 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 876 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 877 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 878 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 879 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 880 finished in 2 ms, mean is 4. -[WorldModel] Agent 9 carried 2 golds to depot! -[miner1] in Q3 to 24x17 -[MiningEnvironment] Cycle 881 finished in 1 ms, mean is 4. -[miner3] All golds=[], evaluation=[] -[miner3] New goal is find gold: quadrant -[MiningEnvironment] Cycle 882 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 883 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 884 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 885 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 886 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 887 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 888 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 889 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 890 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 891 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 892 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 893 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 894 finished in 1 ms, mean is 4. -[miner6] Gold perceived: gold(41,7) -[miner6] All golds=[gold(41,7)], evaluation=[d(2,gold(41,7),not_committed)] -[miner6] Gold options are [d(2,gold(41,7),not_committed)]. Next gold is gold(41,7) -[miner6] Dropping search_gold desires and intentions to handle gold -[miner6] Handling gold(41,7) now. -[MiningEnvironment] Cycle 895 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 896 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 897 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 898 finished in 2 ms, mean is 4. -[miner6] Picked gold(41,7), I have 1 pieces of gold -[miner6] All golds=[], evaluation=[] -[miner6] Going to depot to deliver 1 golds. -[MiningEnvironment] Cycle 899 finished in 6 ms, mean is 4. -[MiningEnvironment] Cycle 900 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 901 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 902 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 903 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 904 finished in 2 ms, mean is 4. -[miner3] in no Q, going to X1 -[miner2] in no Q, going to X1 -[MiningEnvironment] Cycle 905 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 906 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 907 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 908 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 909 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 910 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 911 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 912 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 913 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 914 finished in 2 ms, mean is 4. -[miner1] in Q2 to 0x20 -[MiningEnvironment] Cycle 915 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 916 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 917 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 918 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 919 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 920 finished in 5 ms, mean is 4. -[MiningEnvironment] Cycle 921 finished in 3 ms, mean is 4. -[miner2] in Q3 to 50x11 -[MiningEnvironment] Cycle 922 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 923 finished in 2 ms, mean is 4. -[miner3] in Q3 to 24x49 -[MiningEnvironment] Cycle 924 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 925 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 926 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 927 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 928 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 929 finished in 2 ms, mean is 4. -[miner4] Gold perceived: gold(46,5) -[miner4] All golds=[gold(46,5)], evaluation=[d(1,gold(46,5),not_committed)] -[miner4] Gold options are [d(1,gold(46,5),not_committed)]. Next gold is gold(46,5) -[miner4] Dropping search_gold desires and intentions to handle gold -[miner4] Handling gold(46,5) now. -[MiningEnvironment] Cycle 930 finished in 2 ms, mean is 4. -[miner4] Gold perceived: gold(45,4) -[miner4] All golds=[gold(45,4),gold(46,5)], evaluation=[d(2,gold(45,4),not_committed),d(0,gold(46,5),in_my_place)] -[miner4] Gold options are [d(2,gold(45,4),not_committed),d(0,gold(46,5),in_my_place)]. Next gold is gold(46,5) -[MiningEnvironment] Cycle 931 finished in 2 ms, mean is 4. -[miner5] Gold perceived: gold(5,5) -[miner4] Picked gold(46,5), I have 1 pieces of gold -[miner5] All golds=[gold(5,5)], evaluation=[d(2,gold(5,5),not_committed)] -[miner5] Gold options are [d(2,gold(5,5),not_committed)]. Next gold is gold(5,5) -[miner5] Dropping search_gold desires and intentions to handle gold -[miner4] All golds=[gold(45,4)], evaluation=[d(2,gold(45,4),not_committed)] -[miner5] Handling gold(5,5) now. -[miner4] All golds=[gold(45,4)], evaluation=[] -[miner4] Going to depot to deliver 1 golds. -[miner4] Announcing gold(45,4), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 932 finished in 4 ms, mean is 4. -[miner5] Gold perceived: gold(4,4) -[miner5] All golds=[gold(4,4),gold(5,5)], evaluation=[d(1,gold(4,4),not_committed),d(1,gold(5,5),not_committed)] -[miner5] Gold options are [d(1,gold(4,4),not_committed),d(1,gold(5,5),not_committed)]. Next gold is gold(4,4) -[miner5] Handling gold(4,4) now. -[MiningEnvironment] Cycle 933 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 934 finished in 1 ms, mean is 4. -[miner5] Picked gold(4,4), I have 1 pieces of gold -[miner4] Gold perceived: gold(43,4) -[miner4] All golds=[gold(43,4),gold(45,4)], evaluation=[d(2,gold(43,4),not_committed),d(2,gold(45,4),not_committed)] -[miner4] All golds=[gold(43,4),gold(45,4)], evaluation=[d(2,gold(43,4),not_committed)] -[miner5] All golds=[gold(5,5)], evaluation=[d(2,gold(5,5),not_committed)] -[miner4] All golds=[gold(43,4),gold(45,4)], evaluation=[d(2,gold(45,4),not_committed)] -[miner5] All golds=[gold(5,5)], evaluation=[] -[miner4] All golds=[gold(43,4),gold(45,4)], evaluation=[] -[miner4] do not need to change to goto_depot -[miner5] Going to depot to deliver 1 golds. -[miner5] Announcing gold(5,5), since I am going to depot and that gold was not handled by me (although I perceived it). -[MiningEnvironment] Cycle 935 finished in 5 ms, mean is 4. -[miner5] Gold perceived: gold(6,4) -[miner5] All golds=[gold(6,4),gold(5,5)], evaluation=[d(1,gold(6,4),not_committed),d(1,gold(5,5),not_committed)] -[miner5] All golds=[gold(6,4),gold(5,5)], evaluation=[d(1,gold(6,4),not_committed)] -[miner5] All golds=[gold(6,4),gold(5,5)], evaluation=[d(1,gold(5,5),not_committed)] -[miner5] All golds=[gold(6,4),gold(5,5)], evaluation=[] -[miner5] do not need to change to goto_depot -[MiningEnvironment] Cycle 936 finished in 4 ms, mean is 4. -[MiningEnvironment] Cycle 937 finished in 2 ms, mean is 4. -[miner5] Gold perceived: gold(7,4) -[miner5] All golds=[gold(7,4),gold(6,4),gold(5,5)], evaluation=[d(1,gold(7,4),not_committed),d(0,gold(6,4),in_my_place),d(2,gold(5,5),not_committed)] -[miner5] All golds=[gold(7,4),gold(6,4),gold(5,5)], evaluation=[d(1,gold(7,4),not_committed),d(0,gold(6,4),in_my_place)] -[miner5] All golds=[gold(7,4),gold(6,4),gold(5,5)], evaluation=[d(1,gold(7,4),not_committed),d(0,gold(6,4),not_committed),d(2,gold(5,5),not_committed)] -[miner5] All golds=[gold(7,4),gold(6,4),gold(5,5)], evaluation=[d(1,gold(7,4),not_committed),d(0,gold(6,4),not_committed)] -[miner5] All golds=[gold(7,4),gold(6,4),gold(5,5)], evaluation=[d(1,gold(7,4),not_committed),d(2,gold(5,5),not_committed)] -[miner5] All golds=[gold(7,4),gold(6,4),gold(5,5)], evaluation=[d(1,gold(7,4),not_committed)] -[miner5] All golds=[gold(7,4),gold(6,4),gold(5,5)], evaluation=[d(0,gold(6,4),in_my_place),d(2,gold(5,5),not_committed)] -[miner5] All golds=[gold(7,4),gold(6,4),gold(5,5)], evaluation=[d(0,gold(6,4),in_my_place)] -[miner5] All golds=[gold(7,4),gold(6,4),gold(5,5)], evaluation=[d(0,gold(6,4),not_committed),d(2,gold(5,5),not_committed)] -[miner5] All golds=[gold(7,4),gold(6,4),gold(5,5)], evaluation=[d(0,gold(6,4),not_committed)] -[miner5] All golds=[gold(7,4),gold(6,4),gold(5,5)], evaluation=[d(2,gold(5,5),not_committed)] -[miner5] All golds=[gold(7,4),gold(6,4),gold(5,5)], evaluation=[] -[miner5] do not need to change to goto_depot -[MiningEnvironment] Cycle 938 finished in 9 ms, mean is 4. -[MiningEnvironment] Cycle 939 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 940 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 941 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 942 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 943 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 944 finished in 2 ms, mean is 4. -[miner1] in Q3 to 24x23 -[MiningEnvironment] Cycle 945 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 946 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 947 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 948 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 949 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 950 finished in 2 ms, mean is 4. -[miner3] in Q4 to 0x25 -[MiningEnvironment] Cycle 951 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 952 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 953 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 954 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 955 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 956 finished in 2 ms, mean is 4. -[miner2] in Q2 to 25x14 -[MiningEnvironment] Cycle 957 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 958 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 959 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 960 finished in 1 ms, mean is 4. -[MiningEnvironment] Cycle 961 finished in 2 ms, mean is 4. -[dummy1] No route from 28,34 to 29,34! ---------------------------------------------- -| | -| | -| | -| XXXX XXXXX XXXX X XXXXX XXXX | -| 3 X X | -| X 2 X X | -| X X X | -| X X | -| 4 | -| X X X X | -| X X X X | -| X X X | -| X X X | -| X X X X | -| | -| X X X X | -| X X X X | -| X X X X | -| X X X X | -| X X 5 X X | -| | -| X X | -| X X | -| X X | -| X X | -| X X | -| X X | -| X | -| X X | -| X X | -| | -| X X X | -| X X 6 X | -| X X X | -| X X 1O | -| X X | -| | -| X X | -| X X | -| X X | -| X X | -| X X | -| | -| X X | -| X X X | -| X X X | -| X X X | -| XXXXX XX X | -| | -| | -| | -|--------------------------------------------- - -[MiningEnvironment] Cycle 962 finished in 7 ms, mean is 4. -[WorldModel] Agent 12 carried 1 golds to depot! -[dummy1] No route from 28,34 to 29,34! ---------------------------------------------- -| | -| | -| | -| XXXX XXXXX XXXX X XXXXX XXXX | -| 3 X X | -| X X X | -| X 2 X X | -| X X | -| 4 | -| X X X X | -| X X X X | -| X X X | -| X X X | -| X X X X | -| | -| X X X X | -| X X X X | -| X X X X | -| X X 5 X X | -| X X X X | -| | -| X X | -| X X | -| X X | -| X X | -| X X | -| X X | -| X | -| X X | -| X X | -| | -| X X X | -| X X X | -| X X 6 X | -| X X 1O | -| X X | -| | -| X X | -| X X | -| X X | -| X X | -| X X | -| | -| X X | -| X X X | -| X X X | -| X X X | -| XXXXX XX X | -| | -| | -| | -|--------------------------------------------- - -[MiningEnvironment] Cycle 963 finished in 5 ms, mean is 4. -[miner6] All golds=[], evaluation=[] -[miner6] New goal is find gold: near_unvisited -[MiningEnvironment] Cycle 964 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 965 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 966 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 967 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 968 finished in 4 ms, mean is 4. -[dummy3] picked gold! -[MiningEnvironment] Cycle 969 finished in 3 ms, mean is 4. -[dummy1] in depot -[MiningEnvironment] Cycle 970 finished in 3 ms, mean is 4. -[WorldModel] Agent 1 carried 3 golds to depot! -[MiningEnvironment] Cycle 971 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 972 finished in 4 ms, mean is 4. -[MiningEnvironment] Cycle 973 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 974 finished in 4 ms, mean is 4. -[MiningEnvironment] Cycle 975 finished in 4 ms, mean is 4. -[MiningEnvironment] Cycle 976 finished in 173 ms, mean is 4. -[MiningEnvironment] Cycle 977 finished in 6 ms, mean is 4. -[MiningEnvironment] Cycle 978 finished in 7 ms, mean is 4. -[miner1] in Q2 to 0x24 -[MiningEnvironment] Cycle 979 finished in 5 ms, mean is 4. -[MiningEnvironment] Cycle 980 finished in 6 ms, mean is 4. -[MiningEnvironment] Cycle 981 finished in 5 ms, mean is 4. -[MiningEnvironment] Cycle 982 finished in 5 ms, mean is 4. -[MiningEnvironment] Cycle 983 finished in 5 ms, mean is 4. -[MiningEnvironment] Cycle 984 finished in 4 ms, mean is 4. -[WorldModel] Agent 10 carried 1 golds to depot! -[MiningEnvironment] Cycle 985 finished in 4 ms, mean is 4. -[miner4] All golds=[gold(43,4),gold(45,4)], evaluation=[d(47,gold(43,4),not_committed),d(49,gold(45,4),not_committed)] -[miner4] Gold options are [d(47,gold(43,4),not_committed),d(49,gold(45,4),not_committed)]. Next gold is gold(43,4) -[miner4] Handling gold(43,4) now. -[MiningEnvironment] Cycle 986 finished in 6 ms, mean is 4. -[miner2] in Q3 to 50x17 -[MiningEnvironment] Cycle 987 finished in 5 ms, mean is 4. -[MiningEnvironment] Cycle 988 finished in 4 ms, mean is 4. -[MiningEnvironment] Cycle 989 finished in 3 ms, mean is 4. -[MiningEnvironment] Cycle 990 finished in 4 ms, mean is 4. -[MiningEnvironment] Cycle 991 finished in 4 ms, mean is 4. -[MiningEnvironment] Cycle 992 finished in 6 ms, mean is 4. -[MiningEnvironment] Cycle 993 finished in 5 ms, mean is 4. -[MiningEnvironment] Cycle 994 finished in 4 ms, mean is 4. -[MiningEnvironment] Cycle 995 finished in 4 ms, mean is 4. -[MiningEnvironment] Cycle 996 finished in 2 ms, mean is 4. -[MiningEnvironment] Cycle 997 finished in 4 ms, mean is 4. -[MiningEnvironment] Cycle 998 finished in 5 ms, mean is 4. -[MiningEnvironment] Cycle 999 finished in 11 ms, mean is 4. -[MiningEnvironment] Cycle 1000 finished in 5 ms, mean is 4. -[MiningEnvironment] ** Finished at the maximal number of steps! Red x Blue = 73 x 72 diff --git a/examples/gold-miners-II/mas.log.1.lck b/examples/gold-miners-II/mas.log.1.lck deleted file mode 100644 index e69de29b..00000000 diff --git a/examples/wumpus/aux.asl b/examples/wumpus/aux.asl index 56c7ab2c..bae43c1e 100644 --- a/examples/wumpus/aux.asl +++ b/examples/wumpus/aux.asl @@ -17,8 +17,9 @@ breeze(2,3). stench(2,3). breeze(3,2). -~stench(3,2).*/ +~stench(3,2). +*/ +!show_info <- for (.member(X, [1,2,3,4])) { @@ -34,7 +35,7 @@ breeze(3,2). } } }. - + +!safe(X,Y) : safe(X,Y) <- .print(safe(X,Y)). +!safe(X,Y) <- .print(" ",nsafe(X,Y)). @@ -43,4 +44,3 @@ breeze(3,2). +!wumpus(X,Y) : wumpus(X,Y) <- .print(wumpus(X,Y)). +!wumpus(X,Y) <- .print(" ",nwumpus(X,Y)). - diff --git a/src/main/java/jason/infra/centralised/CentralisedMASLauncherAnt.java b/src/main/java/jason/infra/centralised/CentralisedMASLauncherAnt.java index 28bad55c..76201c67 100644 --- a/src/main/java/jason/infra/centralised/CentralisedMASLauncherAnt.java +++ b/src/main/java/jason/infra/centralised/CentralisedMASLauncherAnt.java @@ -209,7 +209,7 @@ protected String replaceMarks(String script, boolean debug) { // if cartago env if (project.isJade() || - (project.getEnvClass() != null && project.getEnvClass().getClassName().equals("c4jason.CartagoEnvironment"))) { + (project.getEnvClass() != null && project.getEnvClass().getClassName().equals("jaca.CartagoEnvironment"))) { Config c = Config.get(); String cartago = Config.findJarInDirectory(new File(c.getJasonHome()+"/libs"), "cartago"); if (cartago != null) diff --git a/src/main/java/jason/stdlib/include.java b/src/main/java/jason/stdlib/include.java index 69999185..56560a0c 100644 --- a/src/main/java/jason/stdlib/include.java +++ b/src/main/java/jason/stdlib/include.java @@ -69,7 +69,7 @@ public Term[] prepareArguments(Literal body, Unifier un) { if (args.length > 1 && args[1].isVar()) { return un.unifies(args[1], inc.getTerm(1)); } else { - return true; + return true; } } }