From 81eb02061ed2d86bf0b5da48b3b45db17e8caca6 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Wed, 4 Dec 2019 01:49:44 -0500 Subject: [PATCH] Add "graph library" and "simplex" projects as git submodules --- .gitmodules | 6 ++++++ resources/graph_library | 1 + resources/simplex | 1 + 3 files changed, 8 insertions(+) create mode 100644 .gitmodules create mode 160000 resources/graph_library create mode 160000 resources/simplex diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..13a9b69 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "resources/graph_library"] + path = resources/graph_library + url = https://git.brandon-rodriguez.com/python/cs_5310/a3.git +[submodule "resources/simplex"] + path = resources/simplex + url = https://git.brandon-rodriguez.com/python/cs_5310/a5.git diff --git a/resources/graph_library b/resources/graph_library new file mode 160000 index 0000000..b787c5f --- /dev/null +++ b/resources/graph_library @@ -0,0 +1 @@ +Subproject commit b787c5ffdb2099ca23a1930dcdd84ae3c58ca0be diff --git a/resources/simplex b/resources/simplex new file mode 160000 index 0000000..f438261 --- /dev/null +++ b/resources/simplex @@ -0,0 +1 @@ +Subproject commit f4382617f8b050f38dc2ebcb9a436aa8809dba6e -- GitLab