summaryrefslogtreecommitdiff
path: root/test/other/pbs.cpp.awk
blob: 3084ebdfb3c6dd60a4c8d8aa6fff92a8d28d26ea (plain)
1
2
3
4
5
6
7
8
BEGIN { print "vector<int> pbs(int Q, int MAX_OPERATIONS) {" }
{ 
    sub(/\/\* requirement already fulfilled \*\//, "test(i)")
    sub(/\/\/ simulation step/, "do_step(step);")
    sub(/\/\/ reset simulation/, "reset();")
}
{ print }
END { print "return high; }" }