├── .gitignore ├── HungarianAlgorithm.dll ├── LICENSE ├── algorithmic_circular_dome.gh ├── data ├── feasible_MOO_match-coverage_data.csv ├── feasible_landscape_data.csv └── feasible_match-floor_data.csv ├── gh_julia_instructions.md ├── images ├── add_julia_to_path.png ├── algorithm_workflow.jpg ├── backend_screenshot.png ├── cover.png ├── ghpythonremote_success.png ├── julia_backend_stack.png ├── julia_find_location.png ├── julia_package_install.png ├── julia_search_bar.png ├── julia_terminal.png ├── open_anaconda_prompt.png └── pyjulia_success.png ├── jl_scripts ├── cost_category.jld ├── hungarian_upcycling.jl ├── jl_dev.ipynb ├── lp_assignment.jl └── py_dev.ipynb ├── lp_assignment.gh └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | jl_scripts/.ipynb_checkpoints -------------------------------------------------------------------------------- /HungarianAlgorithm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/HungarianAlgorithm.dll -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/LICENSE -------------------------------------------------------------------------------- /algorithmic_circular_dome.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/algorithmic_circular_dome.gh -------------------------------------------------------------------------------- /data/feasible_MOO_match-coverage_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/data/feasible_MOO_match-coverage_data.csv -------------------------------------------------------------------------------- /data/feasible_landscape_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/data/feasible_landscape_data.csv -------------------------------------------------------------------------------- /data/feasible_match-floor_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/data/feasible_match-floor_data.csv -------------------------------------------------------------------------------- /gh_julia_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/gh_julia_instructions.md -------------------------------------------------------------------------------- /images/add_julia_to_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/images/add_julia_to_path.png -------------------------------------------------------------------------------- /images/algorithm_workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/images/algorithm_workflow.jpg -------------------------------------------------------------------------------- /images/backend_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/images/backend_screenshot.png -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/images/cover.png -------------------------------------------------------------------------------- /images/ghpythonremote_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/images/ghpythonremote_success.png -------------------------------------------------------------------------------- /images/julia_backend_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/images/julia_backend_stack.png -------------------------------------------------------------------------------- /images/julia_find_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/images/julia_find_location.png -------------------------------------------------------------------------------- /images/julia_package_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/images/julia_package_install.png -------------------------------------------------------------------------------- /images/julia_search_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/images/julia_search_bar.png -------------------------------------------------------------------------------- /images/julia_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/images/julia_terminal.png -------------------------------------------------------------------------------- /images/open_anaconda_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/images/open_anaconda_prompt.png -------------------------------------------------------------------------------- /images/pyjulia_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/images/pyjulia_success.png -------------------------------------------------------------------------------- /jl_scripts/cost_category.jld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/jl_scripts/cost_category.jld -------------------------------------------------------------------------------- /jl_scripts/hungarian_upcycling.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/jl_scripts/hungarian_upcycling.jl -------------------------------------------------------------------------------- /jl_scripts/jl_dev.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/jl_scripts/jl_dev.ipynb -------------------------------------------------------------------------------- /jl_scripts/lp_assignment.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/jl_scripts/lp_assignment.jl -------------------------------------------------------------------------------- /jl_scripts/py_dev.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/jl_scripts/py_dev.ipynb -------------------------------------------------------------------------------- /lp_assignment.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/lp_assignment.gh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yijiangh/algorithmic_circular_design/HEAD/readme.md --------------------------------------------------------------------------------