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
!9
Resolve
#1
"Port Interface",
#8
"Port Coupling"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve
#1
"Port Interface",
#8
"Port Coupling"
1-port-interface
into
develop
Overview
23
Commits
28
Pipelines
5
Changes
16
1 unresolved thread
Hide all comments
Merged
Angus Lothian
requested to merge
1-port-interface
into
develop
5 years ago
Overview
23
Commits
28
Pipelines
5
Changes
9
1 unresolved thread
Hide all comments
Expand
Adds:
Port interface functions for InputPort and OutputPort.
Functionality for connecting ports and signals, both via signals and ports.
Tests that verifies that the functionality has been correctly implemented.
Fixes to older code so that it works with the new interfaces.
Minor functionality for connecting operations in their constructors.
Closes
#1 (closed)
and closes
#8 (closed)
Edited
5 years ago
by
Angus Lothian
0
0
Merge request reports
Compare
version 4
version 5
57284d79
5 years ago
version 4
cdea823f
5 years ago
version 3
ebad7458
5 years ago
version 2
ebad7458
5 years ago
version 1
2a964b82
5 years ago
develop (base)
and
latest version
latest version
531e1ec7
28 commits,
5 years ago
version 5
57284d79
23 commits,
5 years ago
version 4
cdea823f
22 commits,
5 years ago
version 3
ebad7458
21 commits,
5 years ago
version 2
ebad7458
21 commits,
5 years ago
version 1
2a964b82
20 commits,
5 years ago
Show latest version
9 files
+
64
−
111
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
b_asic/graph_component.py
+
3
−
3
Options
@@ -18,17 +18,17 @@ class GraphComponent(ABC):
@property
@abstractmethod
def
type_name
(
self
)
->
TypeName
:
"""
Return
s
the type name of the graph component
"""
"""
Return the type name of the graph component
"""
raise
NotImplementedError
@property
@abstractmethod
def
name
(
self
)
->
Name
:
"""
Return
s
the name of the graph component.
"""
"""
Return the name of the graph component.
"""
raise
NotImplementedError
@name.setter
@abstractmethod
def
name
(
self
,
name
:
Name
)
->
None
:
"""
Set
s
the name of the graph component to the entered name.
"""
"""
Set the name of the graph component to the entered name.
"""
raise
NotImplementedError
Loading