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.
12 lines
495 B
12 lines
495 B
#include "gtest/gtest.h"
|
|
#include "storm-config.h"
|
|
#include "src/parser/PrismParser.h"
|
|
#include "src/storage/jani/Model.h"
|
|
#include "src/builder/jit/ExplicitJitJaniModelBuilder.h"
|
|
|
|
TEST(ExplicitJitJaniModelBuilderTest, Dtmc) {
|
|
storm::prism::Program program = storm::parser::PrismParser::parse(STORM_CPP_TESTS_BASE_PATH "/functional/builder/die.pm");
|
|
storm::jani::Model janiModel = program.toJani();
|
|
|
|
storm::builder::jit::ExplicitJitJaniModelBuilder<double>(janiModel).build();
|
|
}
|