├── .gitignore ├── LICENSE ├── README.md ├── brain.py ├── brain_util.py ├── cpp ├── BUILD ├── WORKSPACE ├── brain.cc ├── brain.h ├── brain_test.cc └── brain_util.h ├── learner.py ├── matlab ├── assembly_sim.m ├── assembly_sim_step.m ├── kernel.m ├── merge.m ├── randomized_project.m ├── randomized_project_normal.m └── reciprocal_project.m ├── overlap_sim.py ├── parser.py ├── project.py ├── recursive_parser.py ├── simulations.py ├── simulations_test.py ├── tests.py ├── turing_sim.py └── word_order_int.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | cpp/bazel-* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/README.md -------------------------------------------------------------------------------- /brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/brain.py -------------------------------------------------------------------------------- /brain_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/brain_util.py -------------------------------------------------------------------------------- /cpp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/cpp/BUILD -------------------------------------------------------------------------------- /cpp/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/cpp/WORKSPACE -------------------------------------------------------------------------------- /cpp/brain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/cpp/brain.cc -------------------------------------------------------------------------------- /cpp/brain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/cpp/brain.h -------------------------------------------------------------------------------- /cpp/brain_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/cpp/brain_test.cc -------------------------------------------------------------------------------- /cpp/brain_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/cpp/brain_util.h -------------------------------------------------------------------------------- /learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/learner.py -------------------------------------------------------------------------------- /matlab/assembly_sim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/matlab/assembly_sim.m -------------------------------------------------------------------------------- /matlab/assembly_sim_step.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/matlab/assembly_sim_step.m -------------------------------------------------------------------------------- /matlab/kernel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/matlab/kernel.m -------------------------------------------------------------------------------- /matlab/merge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/matlab/merge.m -------------------------------------------------------------------------------- /matlab/randomized_project.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/matlab/randomized_project.m -------------------------------------------------------------------------------- /matlab/randomized_project_normal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/matlab/randomized_project_normal.m -------------------------------------------------------------------------------- /matlab/reciprocal_project.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/matlab/reciprocal_project.m -------------------------------------------------------------------------------- /overlap_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/overlap_sim.py -------------------------------------------------------------------------------- /parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/parser.py -------------------------------------------------------------------------------- /project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/project.py -------------------------------------------------------------------------------- /recursive_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/recursive_parser.py -------------------------------------------------------------------------------- /simulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/simulations.py -------------------------------------------------------------------------------- /simulations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/simulations_test.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/tests.py -------------------------------------------------------------------------------- /turing_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/turing_sim.py -------------------------------------------------------------------------------- /word_order_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitropolsky/assemblies/HEAD/word_order_int.py --------------------------------------------------------------------------------