FDR  4.2.7(6ecbe5a21b71ab020e8fcaeccfe5ebaad0599f4f)
deadlock_free_assertion.h
1 #pragma once
2 
3 #include <fdr/assertions/property_assertion.h>
4 
5 namespace FDR
6 {
7 namespace Assertions
8 {
11 {
12 public:
20  DeadlockFreeAssertion(const std::shared_ptr<Session>& session, const std::shared_ptr<LTS::Machine>& machine,
21  const LTS::SemanticModel model);
23 
24  DeadlockFreeAssertion(const DeadlockFreeAssertion& assertion) = delete;
25  DeadlockFreeAssertion& operator=(const DeadlockFreeAssertion& assertion) = delete;
26 
27 private:
29 
30  friend struct AssertionFactory;
31 };
32 
33 } // end Assertions
34 } // end FDR
FDR::Assertions::PropertyAssertion::machine
std::shared_ptr< LTS::Machine > machine() const
The process that this assertion is about.
FDR::Assertions::DeadlockFreeAssertion::DeadlockFreeAssertion
DeadlockFreeAssertion(const std::shared_ptr< Session > &session, const std::shared_ptr< LTS::Machine > &machine, const LTS::SemanticModel model)
Construct a new deadlock-freedom assertion.
FDR::Assertions::PropertyAssertion
An assertion about processes.
Definition: property_assertion.h:13
FDR::Assertions::DeadlockFreeAssertion
An assertion that a process is deadlock free.
Definition: deadlock_free_assertion.h:11