X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/befbbbe1fbb31663a8f91e24ce12df271cf4ae79..a9b1128dbd610b34e13c166b2f8bffcb7ba48e4a:/src/mc/checker/Checker.hpp diff --git a/src/mc/checker/Checker.hpp b/src/mc/checker/Checker.hpp index ce27ab2f43..417c085c43 100644 --- a/src/mc/checker/Checker.hpp +++ b/src/mc/checker/Checker.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2016. The SimGrid Team. +/* Copyright (c) 2016-2017. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -11,9 +11,9 @@ #include #include -#include "src/mc/mc_forward.hpp" -#include "src/mc/mc_record.h" #include "src/mc/Session.hpp" +#include "src/mc/mc_forward.hpp" +#include "src/mc/mc_record.hpp" namespace simgrid { namespace mc { @@ -52,13 +52,13 @@ public: /** Show the current trace/stack * * Could this be handled in the Session/ModelChecker instead? */ - virtual RecordTrace getRecordTrace(); + virtual RecordTrace getRecordTrace() = 0; /** Generate a textual execution trace of the simulated application */ - virtual std::vector getTextualTrace(); + virtual std::vector getTextualTrace() = 0; /** Log additional information about the state of the model-checker */ - virtual void logState(); + virtual void logState() = 0; protected: Session& getSession() { return *session_; }