Add tests

This commit is contained in:
2023-08-28 13:52:54 +02:00
parent 7387fa86b1
commit e09ab7c77b
5 changed files with 57 additions and 0 deletions

View File

@ -15,6 +15,8 @@ export AbstractComputeTask
export AbstractDataTask
export DataTask
export FusedComputeTask
export PossibleOperations
export GraphProperties
export make_node
export make_edge

View File

@ -52,6 +52,7 @@ function -(prop::GraphProperties)
data = -prop.data,
computeEffort = -prop.computeEffort,
computeIntensity = prop.computeIntensity, # no negation here!
cost = -prop.cost,
noNodes = -prop.noNodes,
noEdges = -prop.noEdges,
)::GraphProperties