~ubuntu-branches/ubuntu/utopic/tcm/utopic

« back to all changes in this revision

Viewing changes to src/sd/bv/smv.h

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2003-07-03 20:08:21 UTC
  • Revision ID: james.westby@ubuntu.com-20030703200821-se4xtqx25e5miczi
Tags: upstream-2.20
ImportĀ upstreamĀ versionĀ 2.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file generates quick-and-dirty NuSMV output */
 
2
 
 
3
#include "llist.h"
 
4
#include "lstring.h"
 
5
#include "graph.h"
 
6
 
 
7
class SMV {
 
8
public:
 
9
        SMV(Graph *st);
 
10
        ~SMV();
 
11
 
 
12
        void WriteSMV(const char *filename, List<string> *internal,
 
13
                                const string *formula);
 
14
private:
 
15
        static void AddNames(List<string> *names, List<string> *guards,
 
16
                                const string *statename);
 
17
        Graph *graph;
 
18
};