diff --git a/.gitignore b/.gitignore index 5cdec6dc0..400ce8f4f 100644 --- a/.gitignore +++ b/.gitignore @@ -19,7 +19,7 @@ dist/ downloads/ eggs/ .eggs/ -# lib/ +# src/ lib64/ parts/ sdist/ @@ -143,10 +143,10 @@ dmypy.json cython_debug/ # automatically generated testing environments on each run -lib/world/examples/worlds/ex3/ -lib/world/examples/worlds/ex4/ -lib/world/examples/worlds/ex5/ -lib/world/examples/worlds/ex6/ -lib/world/examples/worlds/river_env/ -lib/world/test_world/sql_worksheet01.sql -lib/agent/examples/js_agent.json +src/world/examples/worlds/ex3/ +src/world/examples/worlds/ex4/ +src/world/examples/worlds/ex5/ +src/world/examples/worlds/ex6/ +src/world/examples/worlds/river_env/ +src/world/test_world/sql_worksheet01.sql +src/agent/examples/js_agent.json diff --git a/EditMain.py b/EditMain.py index 448b89bfd..87f4688f8 100644 --- a/EditMain.py +++ b/EditMain.py @@ -14,6 +14,10 @@ ) +class EditMainViewException(Exception): + pass + + class EditMainView(qtw.QWidget, Ui_Form): """The settings dialog window""" @@ -173,12 +177,12 @@ def acptfact_pick_combo_load(self): def acptfact_update_heir(self, base_road): if self.acptfact_update_combo.currentText() == "": - raise Exception("No comboup selection for acptfact update.") + raise EditMainViewException("No comboup selection for acptfact update.") if ( self.acptfacts_table.item(self.acptfacts_table.currentRow(), 2).text() is None ): - raise Exception("No table selection for acptfact update.") + raise EditMainViewException("No table selection for acptfact update.") acptfact_update_combo_text = self.acptfact_update_combo.currentText() self.agent_x._idearoot._acptfactunits[ base_road diff --git a/main_app.py b/main_app.py index ffb60f373..63ed877d6 100644 --- a/main_app.py +++ b/main_app.py @@ -30,6 +30,10 @@ from PyQt5 import QtCore as qtc +class MainAppException(Exception): + pass + + class MainApp(QApplication): """The main application object""" @@ -384,12 +388,12 @@ def _acptfacts_table_set_row_and_2_columns(self, row, base_text, acptfact_text): def acptfact_update_heir(self, base_road): if self.acptfact_update_combo.currentText() == "": - raise Exception("No comboup selection for acptfact update.") + raise MainAppException("No comboup selection for acptfact update.") if ( self.acptfacts_table.item(self.acptfacts_table.currentRow(), 2).text() is None ): - raise Exception("No table selection for acptfact update.") + raise MainAppException("No table selection for acptfact update.") acptfact_update_combo_text = self.acptfact_update_combo.currentText() self.agent_x._idearoot._acptfactunits[ base_road diff --git a/src/world/examples/env_tools.py b/src/world/examples/env_tools.py index bddee3edf..7211d3076 100644 --- a/src/world/examples/env_tools.py +++ b/src/world/examples/env_tools.py @@ -37,7 +37,7 @@ def get_temp_env_dir(): def get_test_worlds_dir(): - return "lib/world/examples/worlds" + return "src/world/examples/worlds" @pytest_fixture() @@ -78,7 +78,7 @@ def create_person_file_for_worlds(world_dir: str, person_name: str): def get_test_worlds_dir(): - return "lib/world/examples/worlds" + return "src/world/examples/worlds" def create_test_worlds_list(): @@ -275,7 +275,7 @@ def delete_dir_test_world(world_obj: WorldUnit): def rename_test_world(world_obj: WorldUnit, new_name): # base_dir = world_obj.get_object_root_dir() - base_dir = "lib/world/examples/worlds" + base_dir = "src/world/examples/worlds" src_dir = f"{base_dir}/{world_obj.name}" dst_dir = f"{base_dir}/{new_name}" os_rename(src=src_dir, dst=dst_dir) @@ -287,7 +287,7 @@ class InvalidWorldCopyException(Exception): def copy_test_world(src_name: str, dest_name: str): - base_dir = "lib/world/examples/worlds" + base_dir = "src/world/examples/worlds" new_dir = f"{base_dir}/{dest_name}" if os_path.exists(new_dir): raise InvalidWorldCopyException( diff --git a/src/world/examples/person_env_tools.py b/src/world/examples/person_env_tools.py index 747c68485..5e3456c32 100644 --- a/src/world/examples/person_env_tools.py +++ b/src/world/examples/person_env_tools.py @@ -5,7 +5,7 @@ def get_temp_person_dir(): - return "lib/world/examples/ex_env" + return "src/world/examples/ex_env" @pytest_fixture() diff --git a/src/world/examples/worlds/ex3/persons/w1/w1.json b/src/world/examples/worlds/ex3/persons/w1/w1.json index 4532f9027..19188f4ce 100644 --- a/src/world/examples/worlds/ex3/persons/w1/w1.json +++ b/src/world/examples/worlds/ex3/persons/w1/w1.json @@ -1 +1 @@ -{"name": "w1", "_env_dir": "lib/world/examples/worlds/ex3", "_person_dir": "lib/world/examples/worlds/ex3/persons/w1", "_public_agents_dir": "lib/world/examples/worlds/ex3/agents", "_digest_agents_dir": "lib/world/examples/worlds/ex3/persons/w1/digests", "_src_agentlinks": {"Myagent": {"agent_desc": "Myagent", "link_type": "blind_trust", "weight": 3}, "bob wurld": {"agent_desc": "bob wurld", "link_type": "ignore", "weight": 1}, "tim wurld": {"agent_desc": "tim wurld", "link_type": "blind_trust", "weight": 1}}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file +{"name": "w1", "_env_dir": "src/world/examples/worlds/ex3", "_person_dir": "src/world/examples/worlds/ex3/persons/w1", "_public_agents_dir": "src/world/examples/worlds/ex3/agents", "_digest_agents_dir": "src/world/examples/worlds/ex3/persons/w1/digests", "_src_agentlinks": {"Myagent": {"agent_desc": "Myagent", "link_type": "blind_trust", "weight": 3}, "bob wurld": {"agent_desc": "bob wurld", "link_type": "ignore", "weight": 1}, "tim wurld": {"agent_desc": "tim wurld", "link_type": "blind_trust", "weight": 1}}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file diff --git a/src/world/examples/worlds/ex3/persons/w2/w2.json b/src/world/examples/worlds/ex3/persons/w2/w2.json index 712b8ff7c..8a5620a93 100644 --- a/src/world/examples/worlds/ex3/persons/w2/w2.json +++ b/src/world/examples/worlds/ex3/persons/w2/w2.json @@ -1 +1 @@ -{"name": "w2", "_env_dir": "lib/world/examples/worlds/ex3", "_person_dir": "lib/world/examples/worlds/ex3/persons/w2", "_public_agents_dir": "lib/world/examples/worlds/ex3/agents", "_digest_agents_dir": "lib/world/examples/worlds/ex3/persons/w2/digests", "_src_agentlinks": {}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file +{"name": "w2", "_env_dir": "src/world/examples/worlds/ex3", "_person_dir": "src/world/examples/worlds/ex3/persons/w2", "_public_agents_dir": "src/world/examples/worlds/ex3/agents", "_digest_agents_dir": "src/world/examples/worlds/ex3/persons/w2/digests", "_src_agentlinks": {}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/agents/clay.json b/src/world/examples/worlds/ex5/agents/clay.json index 0d921bc2b..4bece6253 100644 --- a/src/world/examples/worlds/ex5/agents/clay.json +++ b/src/world/examples/worlds/ex5/agents/clay.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 16, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 31, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 5, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/agents/ernie.json b/src/world/examples/worlds/ex5/agents/ernie.json index 1211f5fd3..c361dccf1 100644 --- a/src/world/examples/worlds/ex5/agents/ernie.json +++ b/src/world/examples/worlds/ex5/agents/ernie.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 26, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 7, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 41, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 20, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/agents/francine.json b/src/world/examples/worlds/ex5/agents/francine.json index bf9ddc3a6..9ce8994f4 100644 --- a/src/world/examples/worlds/ex5/agents/francine.json +++ b/src/world/examples/worlds/ex5/agents/francine.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 24, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/agents/jessica.json b/src/world/examples/worlds/ex5/agents/jessica.json index a05b4f4c1..59a3b02b5 100644 --- a/src/world/examples/worlds/ex5/agents/jessica.json +++ b/src/world/examples/worlds/ex5/agents/jessica.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 40, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 30, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 25, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/agents/steve.json b/src/world/examples/worlds/ex5/agents/steve.json index b45f48445..7e1451b3f 100644 --- a/src/world/examples/worlds/ex5/agents/steve.json +++ b/src/world/examples/worlds/ex5/agents/steve.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 46, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 10, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/clay/agents/ernie.json b/src/world/examples/worlds/ex5/persons/clay/agents/ernie.json index 1211f5fd3..c361dccf1 100644 --- a/src/world/examples/worlds/ex5/persons/clay/agents/ernie.json +++ b/src/world/examples/worlds/ex5/persons/clay/agents/ernie.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 26, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 7, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 41, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 20, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/clay/agents/francine.json b/src/world/examples/worlds/ex5/persons/clay/agents/francine.json index bf9ddc3a6..9ce8994f4 100644 --- a/src/world/examples/worlds/ex5/persons/clay/agents/francine.json +++ b/src/world/examples/worlds/ex5/persons/clay/agents/francine.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 24, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/clay/agents/jessica.json b/src/world/examples/worlds/ex5/persons/clay/agents/jessica.json index a05b4f4c1..59a3b02b5 100644 --- a/src/world/examples/worlds/ex5/persons/clay/agents/jessica.json +++ b/src/world/examples/worlds/ex5/persons/clay/agents/jessica.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 40, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 30, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 25, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/clay/agents/steve.json b/src/world/examples/worlds/ex5/persons/clay/agents/steve.json index b45f48445..7e1451b3f 100644 --- a/src/world/examples/worlds/ex5/persons/clay/agents/steve.json +++ b/src/world/examples/worlds/ex5/persons/clay/agents/steve.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 46, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 10, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/clay/clay.json b/src/world/examples/worlds/ex5/persons/clay/clay.json index dc6e0d750..2cbdf19a6 100644 --- a/src/world/examples/worlds/ex5/persons/clay/clay.json +++ b/src/world/examples/worlds/ex5/persons/clay/clay.json @@ -1 +1 @@ -{"name": "clay", "_env_dir": "lib/world/examples/worlds/ex5", "_person_dir": "lib/world/examples/worlds/ex5/persons/clay", "_public_agents_dir": "lib/world/examples/worlds/ex5/agents", "_digest_agents_dir": "lib/world/examples/worlds/ex5/persons/clay/digests", "_src_agentlinks": {"ernie": {"agent_desc": "ernie", "link_type": "blind_trust", "weight": 3}, "steve": {"agent_desc": "steve", "link_type": "blind_trust", "weight": 7}, "jessica": {"agent_desc": "jessica", "link_type": "blind_trust", "weight": 4}, "francine": {"agent_desc": "francine", "link_type": "blind_trust", "weight": 5}}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file +{"name": "clay", "_env_dir": "src/world/examples/worlds/ex5", "_person_dir": "src/world/examples/worlds/ex5/persons/clay", "_public_agents_dir": "src/world/examples/worlds/ex5/agents", "_digest_agents_dir": "src/world/examples/worlds/ex5/persons/clay/digests", "_src_agentlinks": {"ernie": {"agent_desc": "ernie", "link_type": "blind_trust", "weight": 3}, "steve": {"agent_desc": "steve", "link_type": "blind_trust", "weight": 7}, "jessica": {"agent_desc": "jessica", "link_type": "blind_trust", "weight": 4}, "francine": {"agent_desc": "francine", "link_type": "blind_trust", "weight": 5}}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/clay/digests/ernie.json b/src/world/examples/worlds/ex5/persons/clay/digests/ernie.json index 1211f5fd3..c361dccf1 100644 --- a/src/world/examples/worlds/ex5/persons/clay/digests/ernie.json +++ b/src/world/examples/worlds/ex5/persons/clay/digests/ernie.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 26, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 7, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 41, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 20, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/clay/digests/francine.json b/src/world/examples/worlds/ex5/persons/clay/digests/francine.json index bf9ddc3a6..9ce8994f4 100644 --- a/src/world/examples/worlds/ex5/persons/clay/digests/francine.json +++ b/src/world/examples/worlds/ex5/persons/clay/digests/francine.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 24, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/clay/digests/jessica.json b/src/world/examples/worlds/ex5/persons/clay/digests/jessica.json index a05b4f4c1..59a3b02b5 100644 --- a/src/world/examples/worlds/ex5/persons/clay/digests/jessica.json +++ b/src/world/examples/worlds/ex5/persons/clay/digests/jessica.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 40, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 30, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 25, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/clay/digests/steve.json b/src/world/examples/worlds/ex5/persons/clay/digests/steve.json index b45f48445..7e1451b3f 100644 --- a/src/world/examples/worlds/ex5/persons/clay/digests/steve.json +++ b/src/world/examples/worlds/ex5/persons/clay/digests/steve.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 46, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 10, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/ernie/agents/clay.json b/src/world/examples/worlds/ex5/persons/ernie/agents/clay.json index 0d921bc2b..4bece6253 100644 --- a/src/world/examples/worlds/ex5/persons/ernie/agents/clay.json +++ b/src/world/examples/worlds/ex5/persons/ernie/agents/clay.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 16, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 31, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 5, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/ernie/agents/francine.json b/src/world/examples/worlds/ex5/persons/ernie/agents/francine.json index bf9ddc3a6..9ce8994f4 100644 --- a/src/world/examples/worlds/ex5/persons/ernie/agents/francine.json +++ b/src/world/examples/worlds/ex5/persons/ernie/agents/francine.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 24, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/ernie/agents/jessica.json b/src/world/examples/worlds/ex5/persons/ernie/agents/jessica.json index a05b4f4c1..59a3b02b5 100644 --- a/src/world/examples/worlds/ex5/persons/ernie/agents/jessica.json +++ b/src/world/examples/worlds/ex5/persons/ernie/agents/jessica.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 40, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 30, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 25, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/ernie/agents/steve.json b/src/world/examples/worlds/ex5/persons/ernie/agents/steve.json index b45f48445..7e1451b3f 100644 --- a/src/world/examples/worlds/ex5/persons/ernie/agents/steve.json +++ b/src/world/examples/worlds/ex5/persons/ernie/agents/steve.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 46, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 10, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/ernie/digests/clay.json b/src/world/examples/worlds/ex5/persons/ernie/digests/clay.json index 0d921bc2b..4bece6253 100644 --- a/src/world/examples/worlds/ex5/persons/ernie/digests/clay.json +++ b/src/world/examples/worlds/ex5/persons/ernie/digests/clay.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 16, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 31, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 5, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/ernie/digests/francine.json b/src/world/examples/worlds/ex5/persons/ernie/digests/francine.json index bf9ddc3a6..9ce8994f4 100644 --- a/src/world/examples/worlds/ex5/persons/ernie/digests/francine.json +++ b/src/world/examples/worlds/ex5/persons/ernie/digests/francine.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 24, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/ernie/digests/jessica.json b/src/world/examples/worlds/ex5/persons/ernie/digests/jessica.json index a05b4f4c1..59a3b02b5 100644 --- a/src/world/examples/worlds/ex5/persons/ernie/digests/jessica.json +++ b/src/world/examples/worlds/ex5/persons/ernie/digests/jessica.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 40, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 30, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 25, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/ernie/digests/steve.json b/src/world/examples/worlds/ex5/persons/ernie/digests/steve.json index b45f48445..7e1451b3f 100644 --- a/src/world/examples/worlds/ex5/persons/ernie/digests/steve.json +++ b/src/world/examples/worlds/ex5/persons/ernie/digests/steve.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 46, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 10, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/ernie/ernie.json b/src/world/examples/worlds/ex5/persons/ernie/ernie.json index 0bab676d3..faed455c5 100644 --- a/src/world/examples/worlds/ex5/persons/ernie/ernie.json +++ b/src/world/examples/worlds/ex5/persons/ernie/ernie.json @@ -1 +1 @@ -{"name": "ernie", "_env_dir": "lib/world/examples/worlds/ex5", "_person_dir": "lib/world/examples/worlds/ex5/persons/ernie", "_public_agents_dir": "lib/world/examples/worlds/ex5/agents", "_digest_agents_dir": "lib/world/examples/worlds/ex5/persons/ernie/digests", "_src_agentlinks": {"steve": {"agent_desc": "steve", "link_type": "blind_trust", "weight": 3}, "jessica": {"agent_desc": "jessica", "link_type": "blind_trust", "weight": 7}, "francine": {"agent_desc": "francine", "link_type": "blind_trust", "weight": 4}, "clay": {"agent_desc": "clay", "link_type": "blind_trust", "weight": 5}}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file +{"name": "ernie", "_env_dir": "src/world/examples/worlds/ex5", "_person_dir": "src/world/examples/worlds/ex5/persons/ernie", "_public_agents_dir": "src/world/examples/worlds/ex5/agents", "_digest_agents_dir": "src/world/examples/worlds/ex5/persons/ernie/digests", "_src_agentlinks": {"steve": {"agent_desc": "steve", "link_type": "blind_trust", "weight": 3}, "jessica": {"agent_desc": "jessica", "link_type": "blind_trust", "weight": 7}, "francine": {"agent_desc": "francine", "link_type": "blind_trust", "weight": 4}, "clay": {"agent_desc": "clay", "link_type": "blind_trust", "weight": 5}}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/francine/agents/clay.json b/src/world/examples/worlds/ex5/persons/francine/agents/clay.json index 0d921bc2b..4bece6253 100644 --- a/src/world/examples/worlds/ex5/persons/francine/agents/clay.json +++ b/src/world/examples/worlds/ex5/persons/francine/agents/clay.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 16, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 31, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 5, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/francine/agents/ernie.json b/src/world/examples/worlds/ex5/persons/francine/agents/ernie.json index 1211f5fd3..c361dccf1 100644 --- a/src/world/examples/worlds/ex5/persons/francine/agents/ernie.json +++ b/src/world/examples/worlds/ex5/persons/francine/agents/ernie.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 26, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 7, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 41, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 20, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/francine/agents/jessica.json b/src/world/examples/worlds/ex5/persons/francine/agents/jessica.json index a05b4f4c1..59a3b02b5 100644 --- a/src/world/examples/worlds/ex5/persons/francine/agents/jessica.json +++ b/src/world/examples/worlds/ex5/persons/francine/agents/jessica.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 40, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 30, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 25, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/francine/agents/steve.json b/src/world/examples/worlds/ex5/persons/francine/agents/steve.json index b45f48445..7e1451b3f 100644 --- a/src/world/examples/worlds/ex5/persons/francine/agents/steve.json +++ b/src/world/examples/worlds/ex5/persons/francine/agents/steve.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 46, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 10, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/francine/digests/clay.json b/src/world/examples/worlds/ex5/persons/francine/digests/clay.json index 0d921bc2b..4bece6253 100644 --- a/src/world/examples/worlds/ex5/persons/francine/digests/clay.json +++ b/src/world/examples/worlds/ex5/persons/francine/digests/clay.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 16, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 31, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 5, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/francine/digests/ernie.json b/src/world/examples/worlds/ex5/persons/francine/digests/ernie.json index 1211f5fd3..c361dccf1 100644 --- a/src/world/examples/worlds/ex5/persons/francine/digests/ernie.json +++ b/src/world/examples/worlds/ex5/persons/francine/digests/ernie.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 26, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 7, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 41, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 20, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/francine/digests/jessica.json b/src/world/examples/worlds/ex5/persons/francine/digests/jessica.json index a05b4f4c1..59a3b02b5 100644 --- a/src/world/examples/worlds/ex5/persons/francine/digests/jessica.json +++ b/src/world/examples/worlds/ex5/persons/francine/digests/jessica.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 40, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 30, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 25, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/francine/digests/steve.json b/src/world/examples/worlds/ex5/persons/francine/digests/steve.json index b45f48445..7e1451b3f 100644 --- a/src/world/examples/worlds/ex5/persons/francine/digests/steve.json +++ b/src/world/examples/worlds/ex5/persons/francine/digests/steve.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 46, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 10, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/francine/francine.json b/src/world/examples/worlds/ex5/persons/francine/francine.json index dada309f8..d02c0590d 100644 --- a/src/world/examples/worlds/ex5/persons/francine/francine.json +++ b/src/world/examples/worlds/ex5/persons/francine/francine.json @@ -1 +1 @@ -{"name": "francine", "_env_dir": "lib/world/examples/worlds/ex5", "_person_dir": "lib/world/examples/worlds/ex5/persons/francine", "_public_agents_dir": "lib/world/examples/worlds/ex5/agents", "_digest_agents_dir": "lib/world/examples/worlds/ex5/persons/francine/digests", "_src_agentlinks": {"ernie": {"agent_desc": "ernie", "link_type": "blind_trust", "weight": 3}, "steve": {"agent_desc": "steve", "link_type": "blind_trust", "weight": 7}, "jessica": {"agent_desc": "jessica", "link_type": "blind_trust", "weight": 4}, "clay": {"agent_desc": "clay", "link_type": "blind_trust", "weight": 5}}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file +{"name": "francine", "_env_dir": "src/world/examples/worlds/ex5", "_person_dir": "src/world/examples/worlds/ex5/persons/francine", "_public_agents_dir": "src/world/examples/worlds/ex5/agents", "_digest_agents_dir": "src/world/examples/worlds/ex5/persons/francine/digests", "_src_agentlinks": {"ernie": {"agent_desc": "ernie", "link_type": "blind_trust", "weight": 3}, "steve": {"agent_desc": "steve", "link_type": "blind_trust", "weight": 7}, "jessica": {"agent_desc": "jessica", "link_type": "blind_trust", "weight": 4}, "clay": {"agent_desc": "clay", "link_type": "blind_trust", "weight": 5}}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/jessica/agents/clay.json b/src/world/examples/worlds/ex5/persons/jessica/agents/clay.json index 0d921bc2b..4bece6253 100644 --- a/src/world/examples/worlds/ex5/persons/jessica/agents/clay.json +++ b/src/world/examples/worlds/ex5/persons/jessica/agents/clay.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 16, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 31, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 5, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/jessica/agents/ernie.json b/src/world/examples/worlds/ex5/persons/jessica/agents/ernie.json index 1211f5fd3..c361dccf1 100644 --- a/src/world/examples/worlds/ex5/persons/jessica/agents/ernie.json +++ b/src/world/examples/worlds/ex5/persons/jessica/agents/ernie.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 26, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 7, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 41, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 20, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/jessica/agents/francine.json b/src/world/examples/worlds/ex5/persons/jessica/agents/francine.json index bf9ddc3a6..9ce8994f4 100644 --- a/src/world/examples/worlds/ex5/persons/jessica/agents/francine.json +++ b/src/world/examples/worlds/ex5/persons/jessica/agents/francine.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 24, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/jessica/agents/steve.json b/src/world/examples/worlds/ex5/persons/jessica/agents/steve.json index b45f48445..7e1451b3f 100644 --- a/src/world/examples/worlds/ex5/persons/jessica/agents/steve.json +++ b/src/world/examples/worlds/ex5/persons/jessica/agents/steve.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 46, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 10, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/jessica/digests/clay.json b/src/world/examples/worlds/ex5/persons/jessica/digests/clay.json index 0d921bc2b..4bece6253 100644 --- a/src/world/examples/worlds/ex5/persons/jessica/digests/clay.json +++ b/src/world/examples/worlds/ex5/persons/jessica/digests/clay.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 16, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 31, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 5, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/jessica/digests/ernie.json b/src/world/examples/worlds/ex5/persons/jessica/digests/ernie.json index 1211f5fd3..c361dccf1 100644 --- a/src/world/examples/worlds/ex5/persons/jessica/digests/ernie.json +++ b/src/world/examples/worlds/ex5/persons/jessica/digests/ernie.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 26, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 7, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 41, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 20, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/jessica/digests/francine.json b/src/world/examples/worlds/ex5/persons/jessica/digests/francine.json index bf9ddc3a6..9ce8994f4 100644 --- a/src/world/examples/worlds/ex5/persons/jessica/digests/francine.json +++ b/src/world/examples/worlds/ex5/persons/jessica/digests/francine.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 24, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/jessica/digests/steve.json b/src/world/examples/worlds/ex5/persons/jessica/digests/steve.json index b45f48445..7e1451b3f 100644 --- a/src/world/examples/worlds/ex5/persons/jessica/digests/steve.json +++ b/src/world/examples/worlds/ex5/persons/jessica/digests/steve.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 46, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 10, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "steve", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/jessica/jessica.json b/src/world/examples/worlds/ex5/persons/jessica/jessica.json index 76e895720..d3ecda8b0 100644 --- a/src/world/examples/worlds/ex5/persons/jessica/jessica.json +++ b/src/world/examples/worlds/ex5/persons/jessica/jessica.json @@ -1 +1 @@ -{"name": "jessica", "_env_dir": "lib/world/examples/worlds/ex5", "_person_dir": "lib/world/examples/worlds/ex5/persons/jessica", "_public_agents_dir": "lib/world/examples/worlds/ex5/agents", "_digest_agents_dir": "lib/world/examples/worlds/ex5/persons/jessica/digests", "_src_agentlinks": {"ernie": {"agent_desc": "ernie", "link_type": "blind_trust", "weight": 3}, "steve": {"agent_desc": "steve", "link_type": "blind_trust", "weight": 7}, "francine": {"agent_desc": "francine", "link_type": "blind_trust", "weight": 4}, "clay": {"agent_desc": "clay", "link_type": "blind_trust", "weight": 5}}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file +{"name": "jessica", "_env_dir": "src/world/examples/worlds/ex5", "_person_dir": "src/world/examples/worlds/ex5/persons/jessica", "_public_agents_dir": "src/world/examples/worlds/ex5/agents", "_digest_agents_dir": "src/world/examples/worlds/ex5/persons/jessica/digests", "_src_agentlinks": {"ernie": {"agent_desc": "ernie", "link_type": "blind_trust", "weight": 3}, "steve": {"agent_desc": "steve", "link_type": "blind_trust", "weight": 7}, "francine": {"agent_desc": "francine", "link_type": "blind_trust", "weight": 4}, "clay": {"agent_desc": "clay", "link_type": "blind_trust", "weight": 5}}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/steve/agents/clay.json b/src/world/examples/worlds/ex5/persons/steve/agents/clay.json index 0d921bc2b..4bece6253 100644 --- a/src/world/examples/worlds/ex5/persons/steve/agents/clay.json +++ b/src/world/examples/worlds/ex5/persons/steve/agents/clay.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 16, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 31, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 5, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clay", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/steve/agents/ernie.json b/src/world/examples/worlds/ex5/persons/steve/agents/ernie.json index 1211f5fd3..c361dccf1 100644 --- a/src/world/examples/worlds/ex5/persons/steve/agents/ernie.json +++ b/src/world/examples/worlds/ex5/persons/steve/agents/ernie.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 26, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 7, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 41, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 20, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/steve/agents/francine.json b/src/world/examples/worlds/ex5/persons/steve/agents/francine.json index bf9ddc3a6..9ce8994f4 100644 --- a/src/world/examples/worlds/ex5/persons/steve/agents/francine.json +++ b/src/world/examples/worlds/ex5/persons/steve/agents/francine.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 24, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/steve/agents/jessica.json b/src/world/examples/worlds/ex5/persons/steve/agents/jessica.json index a05b4f4c1..59a3b02b5 100644 --- a/src/world/examples/worlds/ex5/persons/steve/agents/jessica.json +++ b/src/world/examples/worlds/ex5/persons/steve/agents/jessica.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 40, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 30, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 25, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/steve/digests/clay.json b/src/world/examples/worlds/ex5/persons/steve/digests/clay.json index aa202a7a7..a59e56896 100644 --- a/src/world/examples/worlds/ex5/persons/steve/digests/clay.json +++ b/src/world/examples/worlds/ex5/persons/steve/digests/clay.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 33, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean hallway": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clean hallway", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 44, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 8, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean hallway": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 24, "_desc": "clean hallway", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 17, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/steve/digests/ernie.json b/src/world/examples/worlds/ex5/persons/steve/digests/ernie.json index 1211f5fd3..c361dccf1 100644 --- a/src/world/examples/worlds/ex5/persons/steve/digests/ernie.json +++ b/src/world/examples/worlds/ex5/persons/steve/digests/ernie.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 26, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 7, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 41, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 20, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/steve/digests/francine.json b/src/world/examples/worlds/ex5/persons/steve/digests/francine.json index bf9ddc3a6..9ce8994f4 100644 --- a/src/world/examples/worlds/ex5/persons/steve/digests/francine.json +++ b/src/world/examples/worlds/ex5/persons/steve/digests/francine.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 24, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 12, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 23, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "francine", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/steve/digests/jessica.json b/src/world/examples/worlds/ex5/persons/steve/digests/jessica.json index a05b4f4c1..59a3b02b5 100644 --- a/src/world/examples/worlds/ex5/persons/steve/digests/jessica.json +++ b/src/world/examples/worlds/ex5/persons/steve/digests/jessica.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 36, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 40, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 30, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 25, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "jessica", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/steve/ignores/clay.json b/src/world/examples/worlds/ex5/persons/steve/ignores/clay.json index aa202a7a7..a59e56896 100644 --- a/src/world/examples/worlds/ex5/persons/steve/ignores/clay.json +++ b/src/world/examples/worlds/ex5/persons/steve/ignores/clay.json @@ -1 +1 @@ -{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 33, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean hallway": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "clean hallway", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 44, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file +{"_kids": {"casa": {"_kids": {"clean bedroom": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 8, "_desc": "clean bedroom", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean hallway": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 24, "_desc": "clean hallway", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}, "clean kitchen": {"_kids": {}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 17, "_desc": "clean kitchen", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": true, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_brandlinks": {}, "_weight": 1, "_desc": "casa", "_uid": null, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_special_road": null, "_numeric_road": null, "promise": false, "_problem_bool": false, "_acptfactunits": {}, "_is_expanded": true, "_on_meld_weight_action": "default"}}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "ernie", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3} \ No newline at end of file diff --git a/src/world/examples/worlds/ex5/persons/steve/steve.json b/src/world/examples/worlds/ex5/persons/steve/steve.json index 0848df8fd..6670873ce 100644 --- a/src/world/examples/worlds/ex5/persons/steve/steve.json +++ b/src/world/examples/worlds/ex5/persons/steve/steve.json @@ -1 +1 @@ -{"name": "steve", "_env_dir": "lib/world/examples/worlds/ex5", "_person_dir": "lib/world/examples/worlds/ex5/persons/steve", "_public_agents_dir": "lib/world/examples/worlds/ex5/agents", "_digest_agents_dir": "lib/world/examples/worlds/ex5/persons/steve/digests", "_src_agentlinks": {"ernie": {"agent_desc": "ernie", "link_type": "blind_trust", "weight": 3}, "jessica": {"agent_desc": "jessica", "link_type": "blind_trust", "weight": 7}, "francine": {"agent_desc": "francine", "link_type": "blind_trust", "weight": 4}, "clay": {"agent_desc": "clay", "link_type": "ignore", "weight": 5}}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file +{"name": "steve", "_env_dir": "src/world/examples/worlds/ex5", "_person_dir": "src/world/examples/worlds/ex5/persons/steve", "_public_agents_dir": "src/world/examples/worlds/ex5/agents", "_digest_agents_dir": "src/world/examples/worlds/ex5/persons/steve/digests", "_src_agentlinks": {"ernie": {"agent_desc": "ernie", "link_type": "blind_trust", "weight": 3}, "jessica": {"agent_desc": "jessica", "link_type": "blind_trust", "weight": 7}, "francine": {"agent_desc": "francine", "link_type": "blind_trust", "weight": 4}, "clay": {"agent_desc": "clay", "link_type": "ignore", "weight": 5}}, "_dest_agent": {"_kids": {}, "_requiredunits": {}, "_acptfactunits": {}, "_allys": {}, "_brands": {}, "_brandlinks": {}, "_weight": 1, "_desc": "", "_uid": 1, "_begin": null, "_close": null, "_addin": null, "_numor": null, "_denom": null, "_reest": null, "_problem_bool": false, "_is_expanded": true, "_special_road": null, "_numeric_road": null, "_on_meld_weight_action": "default", "_max_tree_traverse": 3}, "_auto_dest_agent_to_public_agent": null} \ No newline at end of file diff --git a/src/world/test_person/test_person_.py b/src/world/test_person/test_person_.py index 429dacb2f..33b8cff6c 100644 --- a/src/world/test_person/test_person_.py +++ b/src/world/test_person/test_person_.py @@ -154,7 +154,7 @@ def test_personunit_auto_dest_agent_to_public_agent_SavesAgentToPublicDir( person_text = "person1" public_file_name = f"{person_text}.json" - public_file_path = f"lib/world/examples/ex_env/agents/{public_file_name}" + public_file_path = f"src/world/examples/ex_env/agents/{public_file_name}" px = personunit_shop( name=person_text, env_dir=env_dir, _auto_dest_agent_to_public_agent=True ) diff --git a/src/world/test_world/test_world_.py b/src/world/test_world/test_world_.py index 3078d510a..91628d7ac 100644 --- a/src/world/test_world/test_world_.py +++ b/src/world/test_world/test_world_.py @@ -24,7 +24,7 @@ def test_world_create_dirs_if_null_CreatesDirAndFiles(env_dir_setup_cleanup): print(f"{get_test_worlds_dir()=} {e1.worlds_dir=}") # x_func_delete_dir(e1.get_object_root_dir()) print(f"delete {e1.get_object_root_dir()=}") - world_dir = f"lib/world/examples/worlds/{world_name}" + world_dir = f"src/world/examples/worlds/{world_name}" world_file_name = "world.json" world_file_path = f"{world_dir}/{world_file_name}" agents_dir = f"{world_dir}/agents" @@ -58,14 +58,14 @@ def test_world_create_dirs_if_null_CreatesDirAndFiles(env_dir_setup_cleanup): def test_rename_test_world_CorrectlyRenamesDirAndFiles(env_dir_setup_cleanup): # GIVEN create world old_world_name = get_temp_env_name() - old_world_dir = f"lib/world/examples/worlds/{old_world_name}" + old_world_dir = f"src/world/examples/worlds/{old_world_name}" old_world_file_name = "world.json" old_world_file_path = f"{old_world_dir}/{old_world_file_name}" old_agents_dir = f"{old_world_dir}/agents" old_persons_dir = f"{old_world_dir}/persons" new_world_name = "ex_env1" - new_world_dir = f"lib/world/examples/worlds/{new_world_name}" + new_world_dir = f"src/world/examples/worlds/{new_world_name}" new_world_file_name = "world.json" new_world_file_path = f"{new_world_dir}/{new_world_file_name}" new_agents_dir = f"{new_world_dir}/agents" @@ -127,7 +127,7 @@ def test_rename_test_world_CorrectlyRenamesDirAndFiles(env_dir_setup_cleanup): def test_copy_test_world_CorrectlyCopiesDirAndFiles(env_dir_setup_cleanup): # GIVEN create world old_world_name = get_temp_env_name() - old_world_dir = f"lib/world/examples/worlds/{old_world_name}" + old_world_dir = f"src/world/examples/worlds/{old_world_name}" old_world_file_name = "world.json" old_world_file_path = f"{old_world_dir}/{old_world_file_name}" old_agents_dir = f"{old_world_dir}/agents" @@ -145,7 +145,7 @@ def test_copy_test_world_CorrectlyCopiesDirAndFiles(env_dir_setup_cleanup): assert e1.get_persons_dir() == old_persons_dir new_world_name = "ex_env1" - new_world_dir = f"lib/world/examples/worlds/{new_world_name}" + new_world_dir = f"src/world/examples/worlds/{new_world_name}" new_world_file_name = "world.json" new_world_file_path = f"{new_world_dir}/{new_world_file_name}" new_agents_dir = f"{new_world_dir}/agents"