在Dafny找到搜索和替换的终止措施?

时间:2016-04-23 15:48:36

标签: formal-verification dafny

我正在编写使用查找,删除和插入方法的a search and replace method。我会在一段时间内调用这三种方法,而且我不确定我应该使用哪些前置条件。任何帮助将不胜感激。

完整代码:

      method searchAndReplace(line:array<char>, l:int,
        pat:array<char>, p:int,
        dst:array<char>, n:int)returns(nl:int)
        requires line != null && pat!=null && dst!=null;
        requires !checkIfEqual(pat, dst);
        requires 0<=l<line.Length;
        requires 0<=p<pat.Length;
        requires 0<=n<dst.Length;

        modifies line;
        {
          var at:int := 0;
          var p:int := n;

          while(at != -1 )
          invariant -1<=at<=l; 
          {
            at := find(line, l, dst, n);
            delete(line, l, at, p);
            insert(line, l, pat, p, at);
          }

          var length:int := line.Length;

          return length;
        }


       function checkIfEqual(pat:array<char>, dst:array<char>):bool
        requires pat!=null && dst!=null;
          reads pat;
         reads dst;
{
  if pat.Length != dst.Length then false 
  else forall i:nat :: i < pat.Length ==> pat[i] == dst[i]
}

     // l is length of the string in line
// p is length of the string in nl
// at is the position to insert nl into line
method insert(line:array<char>, l:int, nl:array<char>, p:int, at:int)
  requires line != null && nl != null
  requires 0 <= l+p <= line.Length // line has enough space
  requires 0 <= p <= nl.Length // string in nl is shorter than nl
  requires 0 <= at <= l // insert position within line
  modifies line
  ensures forall i :: (0<=i<p) ==> line[at+i] == nl[i] // ok now
{
  ghost var initialLine := line[..];

  // first we need to move the characters to the right
  var i:int := l;
  while(i>at)
    invariant line[0..i] == initialLine[0..i]
    invariant line[i+p..l+p] == initialLine[i..l]
    invariant at<=i<=l
  {
    i := i - 1;
    line[i+p] := line[i];
  }

  assert line[0..at] == initialLine[0..at];
  assert line[at+p..l+p] == initialLine[at..l];

  i := 0;
  while(i<p)
    invariant 0<=i<=p
    invariant line[0..at] == initialLine[0..at]
    invariant line[at..at+i] == nl[0..i]
    invariant line[at+p..l+p] == initialLine[at..l]
  {
    line[at + i] := nl[i];
    i := i + 1;
  }

  assert line[0..at] == initialLine[0..at];
  assert line[at..at+p] == nl[0..p];
  assert line[at+p..l+p] == initialLine[at..l];
}

        method find(line:array<char>, l:int, pat:array<char>, p:int) returns (pos:int)
  requires line!=null && pat!=null
  requires 0 <= l < line.Length
  requires 0 <= p < pat.Length
  ensures 0 <= pos < l || pos == -1
{
  var iline:int := 0;
  var ipat:int  := 0;
  pos := -1;

  while(iline<l && ipat<pat.Length)
    invariant 0<=iline<=l
    invariant 0<=ipat<=pat.Length
    invariant -1 <= pos < iline
  {
      if(line[iline]==pat[ipat] && (line[iline]!=' ' && pat[ipat]!=' ')){
          if(pos==-1){
              pos := iline;
          }
          ipat:= ipat + 1;
      } else {
        if(ipat>0){
          if(line[iline] == pat[ipat-1]){
            pos := pos + 1;
          }
        }
        ipat:=0;
        pos := -1;
      }
      if(ipat==p) {
          return; 
      }
      iline := iline + 1; 
  }
  return;
}

  method delete(line:array<char>, l:nat, at:nat, p:nat)
  requires line!=null
  requires l <= line.Length
  requires at+p <= l
  modifies line
  ensures line[..at] == old(line[..at])
  ensures line[at..l-p] == old(line[at+p..l])
{
  var i:nat := 0;
  while(i < l-(at+p))
    invariant i <= l-(at+p)
    invariant at+p+i >= at+i 
    invariant line[..at] == old(line[..at])
    invariant line[at..at+i] == old(line[at+p..at+p+i])
    invariant line[at+i..l] == old(line[at+i..l]) // future is untouched
  { 
    line[at+i] := line[at+p+i];
    i := i+1;
  }
}

1 个答案:

答案 0 :(得分:1)

这是一个相当难以证明的事情。以下是一些可能对您有帮助的初步想法。

您需要找到循环的终止度量。我建议使用类似于模式出现次数和字符串长度的元组。

您必须非常小心,替换不包含搜索词,否则您的循环可能不会终止。即使它确实终止,也难以找到在每次迭代时都会减少的终止措施。

例如,假设我要替换&#34; fggf&#34;用&#34; gg&#34;在字符串&#34; ffggff&#34;中,第一次循环我将发生1次&#34; fggf&#34;,并替换&#34; fggf&#34;用&#34; gg&#34;结果&#34; fggf&#34; - 所以我还有一次!第二轮我最终只是&#34; gg&#34;。

您将需要类似功能的东西:

function occurences(line:array<char>, l:int, pat:array<char>, p:int) : int
  reads line
  requires line != null
  requires pat != null
  requires 0 <= l < line.Length
  requires 0 <= p < pat.Length

然后在循环中使用它,如

   ghost var matches := occurrences(line, l, dst, n); 

   while(at != -1 )
      decreases matches
      invariant -1<=at<=l 
      invariant matches == occurrences(line, l, dst, n)
   {
      at := find(line, l, dst, n);
      delete(line, l, at, p);
      insert(line, l, pat, p, at);
      matches := matches - 1;
   }

但是,就像我说的那样,出现次数本身并不足以证明终止。您可以使用任何计算作为终止度量。只要它在每次循环迭代中减少并且没有无限下行链。