Label nodes with line number in the graph; This supresses a warning when packing graphs together with gvpack

This commit is contained in:
Ämin on ThinkPad 2023-05-12 09:15:11 +02:00
parent debfb7a196
commit 1147ac9251

View File

@ -46,7 +46,7 @@ int main(int argc, char *argv[]) {
case '0': case '0':
case '1': case '1':
if(ch=='1') if(ch=='1')
printf("%d->%d;", row,col); printf("G%dN%d->G%dN%d;", line,row,line,col);
col++; col++;
break; break;
case '}': case '}':