diff --git a/VERSION b/VERSION index a599a71..1f6e7a7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.284 +1.5.285 diff --git a/tcltk/tclnetgen.c b/tcltk/tclnetgen.c index dede0fe..da011f2 100644 --- a/tcltk/tclnetgen.c +++ b/tcltk/tclnetgen.c @@ -2522,8 +2522,16 @@ _netcmp_run(ClientData clientData, if (automorphisms == -1) Fprintf(stdout, "Netlists do not match.\n"); - else if (automorphisms == -2) - Fprintf(stdout, "Netlists match uniquely with port errors.\n"); + else if (automorphisms == -2) { + Fprintf(stdout, "Netlists match uniquely with port"); + if (PropertyErrorDetected) { + Fprintf(stdout, " and property errors.\n"); + PrintPropertyResults(dolist); + } + else { + Fprintf(stdout, " errors.\n"); + } + } else { if (automorphisms == 0) Fprintf(stdout, "Netlists match uniquely");