Skip to content
Snippets Groups Projects
Commit 5f85692f authored by Philipp Arras's avatar Philipp Arras
Browse files

Docu

parent 992bd8b6
No related branches found
No related tags found
2 merge requests!265WIP: Even more fun with linear operators,!263WIP: Draw sample2
Pipeline #
......@@ -60,7 +60,7 @@ class Mul(Model):
"""
Please note: If you multiply two operators which share some keys in the
position but have different values there, it is not guaranteed which value
will be used for the sum. You shouldn't do that anyways.
will be used for the product.
"""
def __init__(self, position, op1, op2):
super(Mul, self).__init__(position)
......@@ -85,7 +85,7 @@ class Add(Model):
"""
Please note: If you add two operators which share some keys in the position
but have different values there, it is not guaranteed which value will be
used for the sum. You shouldn't do that anyways.
used for the sum.
"""
def __init__(self, position, op1, op2):
super(Add, self).__init__(position)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment