Commit 782ec023 authored by Mark Lawford's avatar Mark Lawford
Browse files

Quick hack to get tool working with PVS 5.0. Need to revisit this.


git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/trunk/TableTool@7227 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
parent eab216bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ else
            if strncmp(object.pvs_version,'PVS Version 4.0',15)
                % find the TCC that was unprovable
                search_str = sprintf('(?<=Proving formula %s[\\n]*)%s.*?(?=[ \\n]*Rerunning step)',char(found(i)),char(found(i)));
            elseif strncmp(object.pvs_version,'PVS Version 4.2',15)
            elseif strncmp(object.pvs_version,'PVS Version 4.2',15) || strncmp(object.pvs_version,'PVS Version 5.0',15)
                search_str =  sprintf('(?<=Installing rewrite rule \\w+\\s\\s)%s.*?(?=[ \\n]*Rerunning step)',char(found(i)));
            end
            found2 = regexp(result,char(search_str),'match','once');