add fusing

This commit is contained in:
Roland Kuhn 2015-12-14 17:02:00 +01:00
parent 0fb6654f4f
commit a20bbce433
64 changed files with 1397 additions and 534 deletions

View file

@ -25,4 +25,6 @@ trait Graph[+S <: Shape, +M] {
def withAttributes(attr: Attributes): Graph[S, M]
def named(name: String): Graph[S, M] = withAttributes(Attributes.name(name))
def addAttributes(attr: Attributes): Graph[S, M] = withAttributes(module.attributes and attr)
}