antitypical / TesseractCore

Tesseract’s evaluation and type system.
MIT License
30 stars 1 forks source link

Identifiers should be incremented per graph, not globally #68

Closed robrix closed 9 years ago

robrix commented 9 years ago

Right now they’re selected globally, which is pretty terrible. Selecting a fresh identifier for a graph could instead be (maxElement(graph.nodes.keys) ?? 0) + 1.