aboutsummaryrefslogtreecommitdiff
path: root/core/src/Utils/Vector.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2021-04-24 17:11:44 -0700
committerrtk0c <[email protected]>2021-04-24 17:11:44 -0700
commite7afe82857ac3ccc3e10b40cee60ea94cc59232b (patch)
tree15adcffa5495e98cb309255468e016198f1719ac /core/src/Utils/Vector.hpp
parentae6364ebb08b4f6934a38e8945518f7b7c7c1875 (diff)
Second draft of graph rebuild
- Change working set approach to basic BFS with dependency (input pins) counting - TODO convert evaluator to use depths
Diffstat (limited to 'core/src/Utils/Vector.hpp')
-rw-r--r--core/src/Utils/Vector.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/src/Utils/Vector.hpp b/core/src/Utils/Vector.hpp
new file mode 100644
index 0000000..372d484
--- /dev/null
+++ b/core/src/Utils/Vector.hpp
@@ -0,0 +1,6 @@
+#pragma once
+
+struct Vec2i {
+ int x = 0;
+ int y = 0;
+};