gilith/metis

Fatal error on a big file

asr opened this issue · 2 comments

asr commented

Running Metis on a 50 MB file from TPTP 6.4.0, I got the following fatal error:

$ cd TPTP/Axioms
$ metis MED002+0.ax

FATAL ERROR: metis failed:
error in TPTP file "MED002+0.ax" around line 1705619:
    mesh__activeMeSHYear(mesh__D007174,'2003') )).

%------------------------------------------------------------------------------
EOF inside a block comment

I could process the above file using other ATPs.

Version:

$ metis --version
metis 2.3 (release 20160714)

CC'ing @jonaprieto.

Thanks for the bug report, the root cause was a quote containing a block comment opener */ that wasn't being handled properly. The latest release

$ metis --version
metis 2.3 (release 20161108)

which is pushed to this repo fixes the issue.

asr commented

Thanks for fixing the issue and the release.