Commit 0facd9e1 authored by Colin Eles's avatar Colin Eles
Browse files

fixed a small but major bug which I didn't notice before affected checking...

fixed a small but major bug which I didn't notice before affected checking table with subgrids in cvc

git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/trunk/TableTool@6713 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
parent baee61e4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ function [ check, seqs ] = cvc_check( object )
    waitbar(.10,box,'Running Proof');

    % run the cvc command
[status, result] = system(['cvc3 ' filename ' +model']);
[status, result] = system(['cvc3 ' filename ' +model'])

% check return status for errors
if (status ~= 0)
+2 −2
Original line number Diff line number Diff line
@@ -21,8 +21,8 @@ if isempty(parents);
    disjoint = 'QUERY (';
    complete = 'QUERY (';
else
    disjoint = ['QUERY ' parents ' => ('];
    complete = ['QUERY ' parents ' => ('];
    disjoint = ['QUERY ' CVC_checker.matlab_to_cvc_syntax_translation(parents) ' => ('];
    complete = ['QUERY ' CVC_checker.matlab_to_cvc_syntax_translation(parents) ' => ('];
end

for i=1:size(grid.cells,2)