Browse Source

Fixed some backslashes in includes to slashes and changed indentation of some code.

Former-commit-id: 0e4828e368
tempestpy_adaptions
dehnert 11 years ago
parent
commit
2fcb12e875
  1. 6
      src/storage/dd/CuddDd.h
  2. 8
      src/storage/dd/CuddDdManager.h
  3. 8
      src/storage/dd/DdMetaVariable.h

6
src/storage/dd/CuddDd.h

@ -6,7 +6,7 @@
#include <memory>
#include "src/storage/dd/Dd.h"
#include "utility\OsDetection.h"
#include "src/utility/OsDetection.h"
// Include the C++-interface of CUDD.
#include "cuddObj.hh"
@ -26,10 +26,10 @@ namespace storm {
Dd() = default;
Dd(Dd<CUDD> const& other) = default;
Dd& operator=(Dd<CUDD> const& other) = default;
#ifndef WINDOWS
#ifndef WINDOWS
Dd(Dd<CUDD>&& other) = default;
Dd& operator=(Dd<CUDD>&& other) = default;
#endif
#endif
/*!
* Retrieves whether the two DDs represent the same function.

8
src/storage/dd/CuddDdManager.h

@ -6,7 +6,7 @@
#include "src/storage/dd/DdManager.h"
#include "src/storage/dd/DdMetaVariable.h"
#include "src/storage/dd/CuddDd.h"
#include "utility\OsDetection.h"
#include "src/utility/OsDetection.h"
// Include the C++-interface of CUDD.
#include "cuddObj.hh"
@ -27,12 +27,10 @@ namespace storm {
// Explictly forbid copying a DdManager, but allow moving it.
DdManager(DdManager<CUDD> const& other) = delete;
DdManager<CUDD>& operator=(DdManager<CUDD> const& other) = delete;
#ifndef WINDOWS
#ifndef WINDOWS
DdManager(DdManager<CUDD>&& other) = default;
DdManager<CUDD>& operator=(DdManager<CUDD>&& other) = default;
#endif
#endif
/*!
* Retrieves a DD representing the constant one function.

8
src/storage/dd/DdMetaVariable.h

@ -6,7 +6,7 @@
#include <cstdint>
#include <string>
#include "utility\OsDetection.h"
#include "utility/OsDetection.h"
#include "src/storage/dd/CuddDd.h"
namespace storm {
@ -35,12 +35,10 @@ namespace storm {
// Explictly generate all default versions of copy/move constructors/assignments.
DdMetaVariable(DdMetaVariable const& other) = default;
DdMetaVariable& operator=(DdMetaVariable const& other) = default;
#ifndef WINDOWS
#ifndef WINDOWS
DdMetaVariable(DdMetaVariable&& other) = default;
DdMetaVariable& operator=(DdMetaVariable&& other) = default;
#endif
#endif
/*!
* Retrieves the name of the meta variable.

Loading…
Cancel
Save