projects
/
model-checker.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
more implementation of scanalysis...
[model-checker.git]
/
traceanalysis.h
1
#ifndef TRACE_ANALYSIS_H
2
#define TRACE_ANALYSIS_H
3
#include "model.h"
4
5
class Trace_Analysis {
6
public:
7
virtual void analyze(action_list_t *) = 0;
8
SNAPSHOTALLOC
9
};
10
#endif