Added reference to MV source code

This commit is contained in:
Andrei Bondarenko 2021-07-13 04:27:58 +02:00
parent 19a79d4050
commit 7aa2be3ad9

View file

@ -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.