| 36 | namespace Gecode { |
| 37 | |
| 38 | void |
| 39 | trace(Home home, TraceFilter tf, int te, Tracer& t) { |
| 40 | if (static_cast<Space&>(home).findtracerecorder()) |
| 41 | throw MoreThanOneTracer("trace()"); |
| 42 | GECODE_POST; |
| 43 | GECODE_ES_FAIL(TraceRecorder::post(home,tf,te,t)); |
| 44 | } |
| 45 | |
| 46 | } |
| 47 |
nothing calls this directly
no test coverage detected