Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computer Engineering
B-ASIC - Better ASIC Toolbox
Merge requests
!6
Add implementation of
#3
, "Operation Naming System"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add implementation of
#3
, "Operation Naming System"
3-operation-naming-system
into
develop
Overview
16
Commits
30
Pipelines
4
Changes
10
Merged
Angus Lothian
requested to merge
3-operation-naming-system
into
develop
5 years ago
Overview
16
Commits
30
Pipelines
4
Changes
10
Expand
Adds:
GraphComponent interface that interfaces necessary functions for a graph component
Abstract class AbstractGraphComponent that implements name
Change so that SFG uses the GraphComponent interface instead of handling Operation and Signal separately
Add a way for SFG to access graph components by name
Adds the implementation needed for
#3 (closed)
but not the testing yet.
Edited
5 years ago
by
Angus Lothian
0
0
Merge request reports
Compare
develop
version 4
1bee8679
5 years ago
version 3
1d344334
5 years ago
version 2
1d344334
5 years ago
version 1
1c1be021
5 years ago
develop (base)
and
latest version
latest version
92b5f883
30 commits,
5 years ago
version 4
1bee8679
29 commits,
5 years ago
version 3
1d344334
27 commits,
5 years ago
version 2
1d344334
73 commits,
5 years ago
version 1
1c1be021
72 commits,
5 years ago
10 files
+
197
−
97
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
b_asic/__init__.py
+
5
−
2
Options
@@ -2,9 +2,11 @@
Better ASIC Toolbox.
TODO: More info.
"""
from
_
b_asic
import
*
from
b_asic.
basic
_operation
import
*
from
b_asic
.abstract_graph_component
import
*
from
b_asic.
abstract
_operation
import
*
from
b_asic.core_operations
import
*
from
b_asic.graph_component
import
*
from
b_asic.graph_id
import
*
from
b_asic.operation
import
*
from
b_asic.precedence_chart
import
*
from
b_asic.port
import
*
@@ -12,3 +14,4 @@ from b_asic.schema import *
from
b_asic.signal_flow_graph
import
*
from
b_asic.signal
import
*
from
b_asic.simulation
import
*
from
b_asic.traverse_tree
import
*
Loading