Project 'PUM_TDDD96/B-ASIC' was moved to 'da/B-ASIC'. Please update any links and bookmarks that may still have the old path.
Commits on Source (95)
-
Ivar Härnqvist authored
-
Ivar Härnqvist authored
-
Ivar Härnqvist authored
-
Ivar Härnqvist authored
-
Felix Goding authored
-
Felix Goding authored
-
Felix Goding authored
-
Ivar Härnqvist authored
-
Felix Goding authored
-
Felix Goding authored
This reverts commit 21124444
-
Felix Goding authored
# Conflicts: # .gitlab-ci.yml # README.md
-
Felix Goding authored
-
Ivar Härnqvist authored
-
Ivar Härnqvist authored
-
Ivar Härnqvist authored
-
Jacob Wahlman authored
-
Kevin Scott authored
-
Ivar Härnqvist authored
-
Ivar Härnqvist authored
-
Jacob Wahlman authored
-
Ivar Härnqvist authored
-
Ivar Härnqvist authored
-
Kevin Scott authored
-
Kevin Scott authored
-
Jacob Wahlman authored
Move OperationID from operation to signal_flow_graph and change sfg operations datastructure to a dict
-
Jacob Wahlman authored
Integrated ID system, traversing and som signal tests See merge request PUM_TDDD96/B-ASIC!2
-
Felix Goding authored
-
Felix Goding authored
-
Jacob Wahlman authored
-
Felix Goding authored
-
Jacob Wahlman authored
Doxygen and some PEP formatting See merge request PUM_TDDD96/B-ASIC!3
-
Felix Goding authored
-
Felix Goding authored
-
Felix Goding authored
-
Felix Goding authored
-
Felix Goding authored
-
Felix Goding authored
-
Felix Goding authored
-
Felix Goding authored
-
Felix Goding authored
-
Felix Goding authored
-
Felix Goding authored
-
Felix Goding authored
-
Felix Goding authored
-
-
Angus Lothian authored
Resolve "Signal Interface" See merge request PUM_TDDD96/B-ASIC!5
-
Change so that Basic Operation also inherits from abstract graph component and removed name property implementation
-
Jacob Wahlman authored
Add implementation of #3, "Operation Naming System" See merge request PUM_TDDD96/B-ASIC!6
-
Jacob Wahlman authored
-
Jacob Wahlman authored
Resolve "Operation Traversing" See merge request PUM_TDDD96/B-ASIC!7
-
Jacob Wahlman authored
-
Ivar Härnqvist authored
Convert from tabs to spaces See merge request PUM_TDDD96/B-ASIC!8
-
Kevin Scott authored
-
Add updated port and signal interface where connecting / disconnecting is done reflectibly between both signal and port, also add some more helper methods.
-
Ivar Härnqvist authored
Resolve #1 "Port Interface", #8 "Port Coupling" See merge request PUM_TDDD96/B-ASIC!9
-
Arvid Westerlund authored
-
Arvid Westerlund authored
Resolve "Basic Operations" See merge request PUM_TDDD96/B-ASIC!10
-
Solve pull request comments and change so evaluate function in SFG uses the same interface as the abstract evaluate function
-
Ivar Härnqvist authored
Resolve "Add AbstractPort" and "Change Port ID to Port Index" See merge request PUM_TDDD96/B-ASIC!11
-
Ivar Härnqvist authored
-
Ivar Härnqvist authored
Misc. fixes See merge request PUM_TDDD96/B-ASIC!12
-
Jacob Wahlman authored
-
Kevin authored
-
Arvid Westerlund authored
-
Arvid Westerlund authored
Implemented "Modify Word Length" See merge request PUM_TDDD96/B-ASIC!16
-
Change test of multiple outputs of evaluate output and Butterfly to not depend on implementation returing list or tuple
-
Ivar Härnqvist authored
Resolve "Operation Evaluation" See merge request PUM_TDDD96/B-ASIC!17
-
-
Angus Lothian authored
Resolve "Create SFG" See merge request PUM_TDDD96/B-ASIC!18
-
Kevin authored
-
-
Adam Jakobsson authored
Implemented a GUI framework See merge request PUM_TDDD96/B-ASIC!19
-
Refactor constructor so that Input signals and Output signals are connected to ports before traversal is started, that way edge cases of empty SFG's are easily handled
-
Felix Goding authored
Resolve "Print SFG" See merge request PUM_TDDD96/B-ASIC!21
-
Refactor constructor so that Input signals and Output signals are connected to ports before traversal is started, that way edge cases of empty SFG's are easily handled
-
Angus Lothian authored
Resolve "Simulate SFG" See merge request PUM_TDDD96/B-ASIC!23
-
Kevin Scott authored
-
Jacob Wahlman authored
-
Jacob Wahlman authored
Resolve "Replacing Operations in SFG" See merge request PUM_TDDD96/B-ASIC!22
-
Refactor constructor so that Input signals and Output signals are connected to ports before traversal is started, that way edge cases of empty SFG's are easily handled
-
Adam Jakobsson authored
Resolve "System tests iteration 1" See merge request PUM_TDDD96/B-ASIC!25
-
Kevin authored
-
Kevin authored
-
Kevin authored
-
Kevin authored
-
Kevin authored
-
Kevin authored
-
Kevin authored
-
Kevin authored
-
Kevin authored
-
Kevin authored
-
Kevin authored
-
Kevin authored
-
Kevin authored
-
Kevin authored
Showing
- .gitignore 32 additions, 32 deletions.gitignore
- GUI/main_window.py 200 additions, 0 deletionsGUI/main_window.py
- b_asic/__init__.py 1 addition, 1 deletionb_asic/__init__.py
- b_asic/core_operations.py 105 additions, 196 deletionsb_asic/core_operations.py
- b_asic/graph_component.py 103 additions, 5 deletionsb_asic/graph_component.py
- b_asic/graph_id.py 0 additions, 26 deletionsb_asic/graph_id.py
- b_asic/operation.py 281 additions, 174 deletionsb_asic/operation.py
- b_asic/port.py 76 additions, 109 deletionsb_asic/port.py
- b_asic/signal.py 52 additions, 41 deletionsb_asic/signal.py
- b_asic/signal_flow_graph.py 421 additions, 56 deletionsb_asic/signal_flow_graph.py
- b_asic/simulation.py 96 additions, 18 deletionsb_asic/simulation.py
- b_asic/special_operations.py 91 additions, 0 deletionsb_asic/special_operations.py
- small_logo.png 0 additions, 0 deletionssmall_logo.png
- src/main.cpp 20 additions, 20 deletionssrc/main.cpp
- test/conftest.py 1 addition, 0 deletionstest/conftest.py
- test/fixtures/operation_tree.py 46 additions, 44 deletionstest/fixtures/operation_tree.py
- test/fixtures/port.py 13 additions, 3 deletionstest/fixtures/port.py
- test/fixtures/signal.py 3 additions, 1 deletiontest/fixtures/signal.py
- test/fixtures/signal_flow_graph.py 88 additions, 0 deletionstest/fixtures/signal_flow_graph.py
- test/test_abstract_operation.py 29 additions, 14 deletionstest/test_abstract_operation.py
GUI/main_window.py
0 → 100644
b_asic/graph_id.py
deleted
100644 → 0
This diff is collapsed.
This diff is collapsed.
b_asic/special_operations.py
0 → 100644
small_logo.png
0 → 100644
39.5 KiB
test/fixtures/signal_flow_graph.py
0 → 100644