├── .gitignore ├── Circles.png ├── Helpers.cpp ├── Makefile ├── Model.cpp ├── Notes ├── Objective.cpp ├── Packing.png ├── PhiFunc.cpp ├── PhiObj.cpp ├── README.md ├── SpecialPrimitives.nb ├── Struct.cpp ├── Transform.cpp ├── Visualisation.nb ├── XMLInterface.cpp ├── dNLP.cpp ├── examplegen.cpp ├── gQP.cpp ├── main.cpp ├── makeGRB ├── sol.xml ├── test.xml ├── tinyxml2.cpp └── tinyxml2.h /.gitignore: -------------------------------------------------------------------------------- 1 | packer 2 | examplegen 3 | out.xml 4 | *.o 5 | -------------------------------------------------------------------------------- /Circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/Circles.png -------------------------------------------------------------------------------- /Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/Helpers.cpp -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/Makefile -------------------------------------------------------------------------------- /Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/Model.cpp -------------------------------------------------------------------------------- /Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/Notes -------------------------------------------------------------------------------- /Objective.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/Objective.cpp -------------------------------------------------------------------------------- /Packing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/Packing.png -------------------------------------------------------------------------------- /PhiFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/PhiFunc.cpp -------------------------------------------------------------------------------- /PhiObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/PhiObj.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/README.md -------------------------------------------------------------------------------- /SpecialPrimitives.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/SpecialPrimitives.nb -------------------------------------------------------------------------------- /Struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/Struct.cpp -------------------------------------------------------------------------------- /Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/Transform.cpp -------------------------------------------------------------------------------- /Visualisation.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/Visualisation.nb -------------------------------------------------------------------------------- /XMLInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/XMLInterface.cpp -------------------------------------------------------------------------------- /dNLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/dNLP.cpp -------------------------------------------------------------------------------- /examplegen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/examplegen.cpp -------------------------------------------------------------------------------- /gQP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/gQP.cpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/main.cpp -------------------------------------------------------------------------------- /makeGRB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/makeGRB -------------------------------------------------------------------------------- /sol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/sol.xml -------------------------------------------------------------------------------- /test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/test.xml -------------------------------------------------------------------------------- /tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/tinyxml2.cpp -------------------------------------------------------------------------------- /tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlici/Packing/HEAD/tinyxml2.h --------------------------------------------------------------------------------