You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

107 lines
3.9 KiB

  1. 1. LICENSE
  2. LTL2BA - Version 1.0 - October 2001
  3. Written by Denis Oddoux, LIAFA, France
  4. Copyright (c) 2001 Denis Oddoux
  5. LTL2BA - Version 1.1 - August 2007
  6. Modified by Paul Gastin, LSV, France
  7. Copyright (c) 2007 Paul Gastin
  8. Available at http://www.lsv.ens-cachan.fr/~gastin/ltl2ba
  9. This program is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU General Public License as published by
  11. the Free Software Foundation; either version 2 of the License, or
  12. (at your option) any later version. GNU GPL is included in this
  13. distribution, in a file called 'LICENSE'
  14. This program is distributed in the hope that it will be useful,
  15. but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. GNU General Public License for more details.
  18. You should have received a copy of the GNU General Public License
  19. along with this program; if not, write to the Free Software
  20. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. The LTL2BA software was written by Denis Oddoux and modified by Paul
  22. Gastin. It is based on the translation algorithm presented at CAV '01:
  23. P.Gastin and D.Oddoux
  24. "Fast LTL to B�chi Automata Translation"
  25. in 13th International Conference on Computer Aided Verification, CAV 2001,
  26. G. Berry, H. Comon, A. Finkel (Eds.)
  27. Paris, France, July 18-22, 2001,
  28. Proceedings - LNCS 2102, pp. 53-65
  29. Send bug-reports and/or questions to Paul Gastin
  30. http://www.lsv.ens-cachan.fr/~gastin
  31. Part of the code included is issued from the SPIN software Version 3.4.1
  32. The SPIN software is written by Gerard J. Holzmann, originally as part
  33. of ``Design and Validation of Protocols,'' ISBN 0-13-539925-4,
  34. 1991, Prentice Hall, Englewood Cliffs, NJ, 07632
  35. Here are the files that contain some code from Spin v3.4.1 :
  36. cache.c (originally tl_cache.c)
  37. lex.c ( tl_lex.c )
  38. ltl2ba.h ( tl.h )
  39. main.c ( tl_main.c )
  40. mem.c ( tl_mem.c )
  41. parse.c ( tl_parse.c)
  42. rewrt.c ( tl_rewrt.c)
  43. trans.c ( tl_trans.c)
  44. 2. COMPILING
  45. open the archive :
  46. > gunzip ltl2ba-1.1.tar.gz
  47. > tar xf ltl2ba-1.1.tar
  48. > cd ltl2ba-1.1
  49. compile the program
  50. > make
  51. 3. EXECUTING
  52. run the program
  53. > ./ltl2ba -f "formula"
  54. The formula is an LTL formula, and may contain propositional symbols,
  55. boolean operators, temporal operators, and parentheses.
  56. The syntax used is the one used in the 'Spin' model-checker
  57. Propositonal Symbols:
  58. true, false
  59. any lowercase string
  60. Boolean operators:
  61. ! (negation)
  62. -> (implication)
  63. <-> (equivalence)
  64. && (and)
  65. || (or)
  66. Temporal operators:
  67. [] (always)
  68. <> (eventually)
  69. U (until)
  70. V (release)
  71. X (next)
  72. Use spaces between any symbols.
  73. The result is a never claim in Promela that can be given to the
  74. Spin model checker to verify properties on a system.
  75. run the command
  76. > ./ltl2ba
  77. to see the possible options for executing the program
  78. 4. CHANGES IN VERSION 1.1
  79. - fixing a bug in the way sets were used for strongly connected components. Thanks to Joachim Klein (klein@tcs.inf.tu-dresden.de) who found the bug and proposed a patch to fix it.
  80. - fixing a bug in the simplification with strongly connected components for the generalized B�chi automaton.
  81. - improving the simplification with strongly connected components for the generalized B�chi automaton.
  82. - using getrusage to compute running times for the statistics
  83. - some other minor updates.