cknadler / marktab-c

Concise, machine readable guitar tabs
MIT License
36 stars 7 forks source link

Handle symbol cycles #34

Closed cknadler closed 9 years ago

cknadler commented 11 years ago

An example of a symbol cycle would be:

# self reference
Sym1: [Sym1]

# reference cycle
Sym2: [Sym3]
Sym3: [Sym2]
russplaysguitar commented 11 years ago

Ya that's no good

cknadler commented 11 years ago

There is actually an easy solution for this.

Graphs

russplaysguitar commented 11 years ago

Sounds good!