Fix genltl --gh-r
Reported by František Blahoudek. * src/bin/genltl.cc (R_n): Really generate (GFp1 || FGp2), not (GFp1 || GFp2). * NEWS: Mention the bug. * THANKS: Update.
This commit is contained in:
parent
b881c10155
commit
e2378b4904
3 changed files with 7 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2012 Laboratoire de Recherche et Développement de
|
||||
// l'Epita (LRDE).
|
||||
// Copyright (C) 2012, 2013 Laboratoire de Recherche et Développement
|
||||
// de l'Epita (LRDE).
|
||||
//
|
||||
// This file is part of Spot, a model checking library.
|
||||
//
|
||||
|
|
@ -429,7 +429,7 @@ R_n(std::string name, int n)
|
|||
p << name << i + 1;
|
||||
pi = env.require(p.str());
|
||||
|
||||
const formula* fg = G_(F_(pi->clone()));
|
||||
const formula* fg = F_(G_(pi->clone()));
|
||||
|
||||
const formula* f = Or_(gf, fg);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue