Browse Source
added layout info to gspn - dft to gspn builds some layout in be and and
tempestpy_adaptions
added layout info to gspn - dft to gspn builds some layout in be and and
tempestpy_adaptions
Sebastian Junges
8 years ago
7 changed files with 106 additions and 13 deletions
-
15src/storm-dft/transformations/DftToGspnTransformator.cpp
-
43src/storm-gspn/storage/gspn/GSPN.cpp
-
13src/storm-gspn/storage/gspn/GSPN.h
-
14src/storm-gspn/storage/gspn/GspnBuilder.cpp
-
14src/storm-gspn/storage/gspn/GspnBuilder.h
-
17src/storm-gspn/storage/gspn/PlacementInfo.h
-
3src/storm-gspn/storage/gspn/Transition.h
@ -0,0 +1,17 @@ |
|||
#pragma once |
|||
|
|||
namespace storm { |
|||
namespace gspn { |
|||
struct LayoutInfo { |
|||
LayoutInfo() {}; |
|||
LayoutInfo(double x, double y, double rotation = 0.0) : x(x), y(y), rotation(rotation) {}; |
|||
|
|||
// x location |
|||
double x = 0.0; |
|||
// y location |
|||
double y = 0.0; |
|||
// degrees |
|||
double rotation = 0.0; |
|||
}; |
|||
} |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue