You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
862 B
21 lines
862 B
|
|
#include "ProgramLocation.h"
|
|
#include "ProgramGraph.h"
|
|
|
|
namespace storm {
|
|
namespace ppg {
|
|
|
|
std::vector<ProgramEdge*> ProgramLocation::addProgramEdgeToAllGroups(ProgramActionIdentifier action, storm::expressions::Expression const& condition, ProgramLocationIdentifier targetId) {
|
|
return graph->addProgramEdgeToAllGroups(*this, action, condition, targetId);
|
|
}
|
|
|
|
std::vector<ProgramEdge*> ProgramLocation::addProgramEdgeToAllGroups(ProgramActionIdentifier action, ProgramLocationIdentifier targetId) {
|
|
return graph->addProgramEdgeToAllGroups(*this, action, targetId);
|
|
}
|
|
|
|
ProgramEdgeGroup* ProgramLocation::addProgramEdgeGroup(storm::expressions::Expression const& probability) {
|
|
return graph->addProgramEdgeGroup(*this, probability);
|
|
}
|
|
|
|
}
|
|
}
|