Skip to content
Snippets Groups Projects
Commit ae3c731a authored by Colin Eles's avatar Colin Eles
Browse files

found bug in parsing pvs result, updated proof script

git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/trunk/TableTool@7019 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
parent 5343fad5
No related branches found
No related tags found
No related merge requests found
...@@ -19,10 +19,10 @@ function [ check, seqs ] = cvc_check( object ) ...@@ -19,10 +19,10 @@ function [ check, seqs ] = cvc_check( object )
[filename, queries] = object.generate_file; [filename, queries] = object.generate_file;
waitbar(.10,box,'Running Proof'); waitbar(.10,box,'Running Proof');
tic
% run the cvc command % run the cvc command
[status, result] = system(['cvc3 ' filename ' +model']) [status, result] = system(['cvc3 ' filename ' +model']);
toc
% check return status for errors % check return status for errors
if (status ~= 0) if (status ~= 0)
......
...@@ -130,23 +130,7 @@ end ...@@ -130,23 +130,7 @@ end
end end
code = [code sprintf('%s(%s):%s = \n',function_name,inputs_new,function_name_type)]; code = [code sprintf('%s(%s):%s = \n',function_name,inputs_new,function_name_type)];
%else
%inputs_new = [];
%for i=1:size(object.input_type,1)
% inputs_new = [inputs_new char(object.input_type(i,1)) ':' PVS_checker.matlab_type_to_pvs_type(char(object.input_type(i,2)))];
% if(i~=(size(object.input_type,1)))
% inputs_new = [inputs_new ','];
% end
%end
%code = [code sprintf('%s(%s):%s = \n',function_name,inputs_new,function_name_type)];
%code = [code sprintf('%s(%s):real = \n',object.data.function_name,inputs_new)];
%end
code = [code object.generate_pvs(object.data.Grid1,object.data.Grid2,0)]; code = [code object.generate_pvs(object.data.Grid1,object.data.Grid2,0)];
code = [code sprintf('\nEND %s',function_name)]; code = [code sprintf('\nEND %s',function_name)];
fprintf(fileid,code); fprintf(fileid,code);
......
...@@ -9,10 +9,13 @@ ...@@ -9,10 +9,13 @@
% none % none
% Author: Colin Eles elesc@mcmaster.ca % Author: Colin Eles elesc@mcmaster.ca
% Organization: McMaster Centre for Software Certification % Organization: McMaster Centre for Software Certification
function [] = generate_pvs_script(object,filename) function [] = generate_pvs_script(object,filename,sim_types)
fileid = fopen([filename '.el'],'w'); fileid = fopen([filename '.el'],'w');
code = ['(prove-tccs-pvs-file "' filename '" "(try (try (tcc) (try (assert) (skip) (fail) ) (fail))(skip) (random-test :count ' sprintf('%ld',object.data.settings.count) ' :size ' sprintf('%d',object.data.settings.range) '))" )' sprintf('\n')]; %if sim_types == 0
code = ['(prove-tccs-pvs-file "' filename '" "(try (try (subtype-tcc) (try (assert) (skip) (fail) ) (fail))(skip) (random-test :count ' sprintf('%ld',object.data.settings.count) ' :size ' sprintf('%d',object.data.settings.range) '))" )' sprintf('\n')];
%else
% code = ['(prove-tccs-pvs-file "' filename '" "(try (try (subtype-tcc) (try (assert) (skip) (fail) ) (fail))(skip) (random-test :count ' sprintf('%ld',object.data.settings.count) ' :size ' sprintf('%d',object.data.settings.range) '))" )' sprintf('\n')];
%end
fprintf(fileid,code); fprintf(fileid,code);
fclose(fileid); fclose(fileid);
end end
......
...@@ -28,10 +28,10 @@ else ...@@ -28,10 +28,10 @@ else
% find the TCC that was unprovable % find the TCC that was unprovable
search_str = sprintf('(?<=Proving formula %s[\\n]*)%s.*?(?=[ \\n]*Rerunning step)',char(found(i)),char(found(i))); 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)
search_str = sprintf('(?<=Installing rewrite rule singleton_rew\\s\\s)%s.*?(?=[ \\n]*Rerunning step)',char(found(i))); search_str = sprintf('(?<=Installing rewrite rule \\w+\\s\\s)%s.*?(?=[ \\n]*Rerunning step)',char(found(i)));
end end
found2 = regexp(result,char(search_str),'match','once'); found2 = regexp(result,char(search_str),'match','once');
% find the counter examples % find the counter examples
search_str = sprintf('(?<=%s.*?substitutions:).*?(?=This will undo the proof to: \\n%s)|(?<=%s.*?)No counter-examples(?=.*?%s)',char(found(i)),char(found(i)),char(found(i)),char(found(i))); search_str = sprintf('(?<=%s.*?substitutions:).*?(?=This will undo the proof to: \\n%s)|(?<=%s.*?)No counter-examples(?=.*?%s)',char(found(i)),char(found(i)),char(found(i)),char(found(i)));
......
...@@ -52,12 +52,14 @@ elseif (exists == 0 || strcmp(button,'Attempt to prove')) ...@@ -52,12 +52,14 @@ elseif (exists == 0 || strcmp(button,'Attempt to prove'))
% generate the proof script % generate the proof script
object.generate_pvs_script(function_name); object.generate_pvs_script(function_name,1);
waitbar(.10,box,'Running Proof'); waitbar(.10,box,'Running Proof');
%--------- %---------
% call pvs in batch mode with script % call pvs in batch mode with script
% ADD check that pvs actually exists in system % ADD check that pvs actually exists in system
tic
[status, result] = system(['pvs -batch -v 3 -l ' function_name '.el']) [status, result] = system(['pvs -batch -v 3 -l ' function_name '.el'])
toc
%objectect.msgbox_scroll(result); %objectect.msgbox_scroll(result);
waitbar(.70,box,'Parsing Results'); waitbar(.70,box,'Parsing Results');
[parsed error] = object.parse_pvs_result(result); [parsed error] = object.parse_pvs_result(result);
...@@ -76,7 +78,7 @@ elseif (exists == 0 || strcmp(button,'Attempt to prove')) ...@@ -76,7 +78,7 @@ elseif (exists == 0 || strcmp(button,'Attempt to prove'))
end end
waitbar(.100,box,'Deleting Proof Script'); waitbar(.100,box,'Deleting Proof Script');
delete([function_name '.el']); %delete([function_name '.el']);
delete(box); delete(box);
end end
......
...@@ -22,7 +22,8 @@ function string = pvs_check_for_imports(object) ...@@ -22,7 +22,8 @@ function string = pvs_check_for_imports(object)
hashtable = {{'sqrt', 'reals@sqrt'} {'sin', 'trig@trig_basic'} {'cos', 'trig@trig_basic'} {'tan', 'trig@trig_basic'}}; hashtable = {{'sqrt', 'reals@sqrt'} {'sin', 'trig@trig_basic'} {'cos', 'trig@trig_basic'} {'tan', 'trig@trig_basic'}};
for k=1:size(hashtable,2) for k=1:size(hashtable,2)
functions = regexp(object.data.function_inputs,hashtable{k}(1),'once')
functions = regexp(char(object.data.function_inputs),hashtable{k}(1),'once')
if ~isempty(functions{1}) if ~isempty(functions{1})
if (~any(ismember(found,hashtable{k}(1)))) if (~any(ismember(found,hashtable{k}(1))))
string = [string 'IMPORTING ' char(hashtable{k}(2)) sprintf('\n')]; string = [string 'IMPORTING ' char(hashtable{k}(2)) sprintf('\n')];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment