Added reference to MV source code
This commit is contained in:
parent
19a79d4050
commit
7aa2be3ad9
1 changed files with 3 additions and 1 deletions
|
|
@ -14,6 +14,8 @@ class State(ABC):
|
||||||
"""
|
"""
|
||||||
Abstract base class for MvS CRUD interface defined in:
|
Abstract base class for MvS CRUD interface defined in:
|
||||||
http://msdl.cs.mcgill.ca/people/yentl/files/thesis.pdf
|
http://msdl.cs.mcgill.ca/people/yentl/files/thesis.pdf
|
||||||
|
This code is based on:
|
||||||
|
https://msdl.uantwerpen.be/git/yentl/modelverse/src/master/state/modelverse_state
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|
@ -88,7 +90,7 @@ class State(ABC):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def create_dict(self, source: Element, value: Any, target: Element) -> Optional[Tuple[Edge, Edge, Node]]:
|
def create_dict(self, source: Element, value: Any, target: Element) -> None:
|
||||||
"""
|
"""
|
||||||
Creates named edge between two graph elements.
|
Creates named edge between two graph elements.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue