Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build Error without z3 #667

Open
AlanLeAI opened this issue Feb 7, 2025 · 9 comments
Open

Build Error without z3 #667

AlanLeAI opened this issue Feb 7, 2025 · 9 comments

Comments

@AlanLeAI
Copy link

AlanLeAI commented Feb 7, 2025

I am installing storm package in order to install stormpy, and I have some errors. I am following this instruction to install storm. Thank you so much for your help.

git clone -b stable https://github.com/moves-rwth/storm.git
export STORM_DIR=
cd $STORM_DIR
mkdir build
cd build
cmake ..
make

I have errors when execute make as below

[ 1%] Built target l3pp_ext
[ 1%] Built target eigen_src
[ 1%] Performing configure step for 'glpk_ext'
CMake Error at /work/cs-grad/tuanle/xSRL/storm/build/resources/3rdparty/glpk-5.0/src/glpk_ext-stamp/glpk_ext-configure-RELEASE.cmake:49 (message):
Command failed: 1

'/work/cs-grad/tuanle/xSRL/storm/resources/3rdparty/glpk-5.0/configure' '--prefix=/work/cs-grad/tuanle/xSRL/storm/build/resources/3rdparty/glpk-5.0' '--libdir=/work/cs-grad/tuanle/xSRL/storm/build/resources/3rdparty/glpk-5.0/lib' 'CC=/usr/bin/cc' 'CXX=/usr/bin/c++'

See also

/work/cs-grad/tuanle/xSRL/storm/build/resources/3rdparty/glpk-5.0/src/glpk_ext-stamp/glpk_ext-configure-*.log

make[2]: *** [CMakeFiles/glpk_ext.dir/build.make:92: resources/3rdparty/glpk-5.0/src/glpk_ext-stamp/glpk_ext-configure] Error 1
make[1]: *** [CMakeFiles/Makefile2:767: CMakeFiles/glpk_ext.dir/all] Error 2

The output logs file of

storm/build/resources/3rdparty/glpk-5.0/src/glpk_ext-stamp/glpk_ext-configure-err.log

is

config.status: error: cannot find input file: `examples/Makefile.in'

the output of storm/build/resources/3rdparty/glpk-5.0/src/glpk_ext-stamp/glpk_ext-configure-out.log

is

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... /usr/bin/cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /usr/bin/cc accepts -g... yes
checking for /usr/bin/cc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of /usr/bin/cc... gcc3
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by /usr/bin/cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @file support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from /usr/bin/cc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... /usr/bin/cc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if /usr/bin/cc supports -fno-rtti -fno-exceptions... no
checking for /usr/bin/cc option to produce PIC... -fPIC -DPIC
checking if /usr/bin/cc PIC flag -fPIC -DPIC works... yes
checking if /usr/bin/cc static flag -static works... yes
checking if /usr/bin/cc supports -c -o file.o... yes
checking if /usr/bin/cc supports -c -o file.o... (cached) yes
checking whether the /usr/bin/cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for exp in -lm... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for gettimeofday... yes
checking whether to use GNU MP bignum library... no
checking whether to enable shared library support... no
checking whether to enable MathProg ODBC support... no
checking whether to enable MathProg MySQL support... no
checking whether to enable reentrancy support... yes
checking for thread local storage (TLS) class specifier... _Thread_local
checking if libtool needs -no-undefined flag to build shared libraries... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating src/Makefile

@tquatmann
Copy link
Member

This issue has probably been fixed already in this PR #520 (which is probably not in the stable branch yet).
Could you switch to the master branch, remove your build directory and start again?

@AlanLeAI
Copy link
Author

AlanLeAI commented Feb 7, 2025

I have switch to master branch

git checkout master

and delete the build folder and create again follow these steps

cd build
cmake ..
make

Get a new error

CMake Error at /work/cs-grad/tuanle/xSRL/storm/build/sylvan/src/sylvan-stamp/sylvan-configure-RELEASE.cmake:49 (message):
Command failed: 1

'/work/cs-grad/tuanle/miniconda3/envs/xsrl/bin/cmake' '-DPROJECT_NAME=storm' '-DCMAKE_C_COMPILER=/usr/bin/cc' '-DCMAKE_CXX_COMPILER=/usr/bin/c++' '-DSYLVAN_BUILD_DOCS=OFF' '-DSYLVAN_BUILD_EXAMPLES=OFF' '-DCMAKE_BUILD_TYPE=Release' '-DCMAKE_POSITION_INDEPENDENT_CODE=ON' '-DSYLVAN_GMP=ON' '-DUSE_CARL=ON' '-Dcarl_DIR=/work/cs-grad/tuanle/xSRL/carl-storm/build' '-DBUILD_SHARED_LIBS=OFF' '-GUnix Makefiles' '-S' '/work/cs-grad/tuanle/xSRL/storm/resources/3rdparty/sylvan' '-B' '/work/cs-grad/tuanle/xSRL/storm/build/resources/3rdparty/sylvan'

See also

/work/cs-grad/tuanle/xSRL/storm/build/sylvan/src/sylvan-stamp/sylvan-configure-*.log

The log file is

�[31mCMake Error at /work/cs-grad/tuanle/miniconda3/envs/xsrl/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
Could NOT find GMP (missing: GMP_LIBRARIES GMP_INCLUDE_DIR)
Call Stack (most recent call first):
/work/cs-grad/tuanle/miniconda3/envs/xsrl/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake:600 (_FPHSA_FAILURE_MESSAGE)
cmake/FindGMP.cmake:22 (find_package_handle_standard_args)
src/CMakeLists.txt:75 (find_package)

�[0m

-- The C compiler identification is GNU 11.4.1
-- The CXX compiler identification is GNU 11.4.1
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found PkgConfig: /usr/bin/pkg-config (found version "1.7.3")
-- Configuring incomplete, errors occurred!

@AlanLeAI
Copy link
Author

Please help me with this issue. I appreciate your help a lot. Thank you so much for your help.

@sjunges
Copy link
Contributor

sjunges commented Feb 10, 2025

Appearantly, sylvan does not find the GMP library. Did you install the GMP library?

In particular, here are the dependencies we require: https://www.stormchecker.org/documentation/obtain-storm/dependencies.html

Furthermore, could you add all CMAKE output?

Sebastian

@AlanLeAI
Copy link
Author

i have successfully go to the step 'make test' and i have this Failed test. May I ask you if you can help me with this

[ FAILED ] BeliefExplorationTest/1.simple_Rmax, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.simple_Rmax_SE, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.simple_Rmin, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.simple_Rmin_SE, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.simple_slippery_Rmax, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.simple_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.simple_slippery_Rmin, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.simple_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.maze2_Rmin, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.maze2_Rmin_SE, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.maze2_Rmax, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.maze2_Rmax_SE, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.maze2_slippery_Rmin, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.maze2_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.maze2_slippery_Rmax, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.maze2_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.refuel_Pmax, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.refuel_Pmax_SE, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.refuel_Pmin, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/1.refuel_Pmin_SE, where TypeParam = (anonymous namespace)::SelfloopReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_Pmax, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_Pmax_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_Pmin, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_Pmin_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_slippery_Pmax, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_slippery_Pmax_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_slippery_Pmin, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_slippery_Pmin_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_Rmax, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_Rmax_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_Rmin, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_Rmin_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_slippery_Rmax, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_slippery_Rmin, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.simple_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.maze2_Rmin, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.maze2_Rmin_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.maze2_Rmax, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.maze2_Rmax_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.maze2_slippery_Rmin, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.maze2_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.maze2_slippery_Rmax, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.maze2_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.refuel_Pmax, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.refuel_Pmax_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.refuel_Pmin, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/2.refuel_Pmin_SE, where TypeParam = (anonymous namespace)::QualitativeReductionDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_Pmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_Pmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_Pmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_Pmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_slippery_Pmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_slippery_Pmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_slippery_Pmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_slippery_Pmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_Rmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_Rmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_Rmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_Rmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_slippery_Rmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_slippery_Rmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.simple_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.maze2_Rmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.maze2_Rmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.maze2_Rmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.maze2_Rmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.maze2_slippery_Rmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.maze2_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.maze2_slippery_Rmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.maze2_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.refuel_Pmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.refuel_Pmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.refuel_Pmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/3.refuel_Pmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_Pmax, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_Pmax_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_Pmin, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_Pmin_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_slippery_Pmax, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_slippery_Pmax_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_slippery_Pmin, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_slippery_Pmin_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_Rmax, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_Rmax_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_Rmin, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_Rmin_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_slippery_Rmax, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_slippery_Rmin, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.simple_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.maze2_Rmin, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.maze2_Rmin_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.maze2_Rmax, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.maze2_Rmax_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.maze2_slippery_Rmin, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.maze2_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.maze2_slippery_Rmax, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.maze2_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.refuel_Pmax, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.refuel_Pmax_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.refuel_Pmin, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/4.refuel_Pmin_SE, where TypeParam = (anonymous namespace)::FineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_Pmax, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_Pmax_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_Pmin, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_Pmin_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_slippery_Pmax, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_slippery_Pmax_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_slippery_Pmin, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_slippery_Pmin_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_Rmax, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_Rmax_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_Rmin, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_Rmin_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_slippery_Rmax, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_slippery_Rmin, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.simple_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.maze2_Rmin, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.maze2_Rmin_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.maze2_Rmax, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.maze2_Rmax_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.maze2_slippery_Rmin, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.maze2_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.maze2_slippery_Rmax, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.maze2_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.refuel_Pmax, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.refuel_Pmax_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.refuel_Pmin, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/5.refuel_Pmin_SE, where TypeParam = (anonymous namespace)::RefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_Pmax, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_Pmax_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_Pmin, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_Pmin_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_slippery_Pmax, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_slippery_Pmax_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_slippery_Pmin, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_slippery_Pmin_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_Rmax, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_Rmax_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_Rmin, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_Rmin_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_slippery_Rmax, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_slippery_Rmin, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.simple_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.maze2_Rmin, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.maze2_Rmin_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.maze2_Rmax, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.maze2_Rmax_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.maze2_slippery_Rmin, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.maze2_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.maze2_slippery_Rmax, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.maze2_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.refuel_Pmax, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.refuel_Pmax_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.refuel_Pmin, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/6.refuel_Pmin_SE, where TypeParam = (anonymous namespace)::PreprocessedRefineDoubleVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_Pmax, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_Pmax_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_Pmin, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_Pmin_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_slippery_Pmax, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_slippery_Pmax_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_slippery_Pmin, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_slippery_Pmin_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_Rmax, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_Rmax_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_Rmin, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_Rmin_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_slippery_Rmax, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_slippery_Rmin, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.simple_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.maze2_Rmin, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.maze2_Rmin_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.maze2_Rmax, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.maze2_Rmax_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.maze2_slippery_Rmin, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.maze2_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.maze2_slippery_Rmax, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.maze2_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.refuel_Pmax, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.refuel_Pmax_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.refuel_Pmin, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/7.refuel_Pmin_SE, where TypeParam = (anonymous namespace)::DefaultDoubleOVIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_Pmax, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_Pmax_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_Pmin, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_Pmin_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_slippery_Pmax, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_slippery_Pmax_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_slippery_Pmin, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_slippery_Pmin_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_Rmax, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_Rmax_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_Rmin, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_Rmin_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_slippery_Rmax, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_slippery_Rmin, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.simple_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.maze2_Rmin, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.maze2_Rmin_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.maze2_Rmax, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.maze2_Rmax_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.maze2_slippery_Rmin, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.maze2_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.maze2_slippery_Rmax, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.maze2_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.refuel_Pmax, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.refuel_Pmax_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.refuel_Pmin, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/8.refuel_Pmin_SE, where TypeParam = (anonymous namespace)::DefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_Pmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_Pmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_Pmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_Pmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_slippery_Pmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_slippery_Pmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_slippery_Pmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_slippery_Pmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_Rmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_Rmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_Rmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_Rmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_slippery_Rmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_slippery_Rmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.simple_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.maze2_Rmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.maze2_Rmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.maze2_Rmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.maze2_Rmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.maze2_slippery_Rmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.maze2_slippery_Rmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.maze2_slippery_Rmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.maze2_slippery_Rmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.refuel_Pmax, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.refuel_Pmax_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.refuel_Pmin, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment
[ FAILED ] BeliefExplorationTest/9.refuel_Pmin_SE, where TypeParam = (anonymous namespace)::PreprocessedDefaultRationalPIEnvironment

280 FAILED TESTS

  Start 35: run-test-pomdp-tracking

35/36 Test #35: run-test-pomdp-tracking ................***Failed 0.03 sec
[==========] Running 1 test from 1 test suite.
[----------] Global test environment set-up.
[----------] 1 test from BeliefSupportTracking
[ RUN ] BeliefSupportTracking.Maze
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefSupportTracking.Maze (6 ms)
[----------] 1 test from BeliefSupportTracking (6 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test suite ran. (6 ms total)
[ PASSED ] 0 tests.
[ FAILED ] 1 test, listed below:
[ FAILED ] BeliefSupportTracking.Maze

1 FAILED TEST

  Start 36: run-test-pomdp-api

36/36 Test #36: run-test-pomdp-api .....................***Failed 0.05 sec
[==========] Running 14 tests from 1 test suite.
[----------] Global test environment set-up.
[----------] 14 tests from BeliefExplorationAPITest/0, where TypeParam = DefaultDoubleVIEnvironment
[ RUN ] BeliefExplorationAPITest/0.simple_Pmax
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.simple_Pmax, where TypeParam = DefaultDoubleVIEnvironment (4 ms)
[ RUN ] BeliefExplorationAPITest/0.simple_Pmin
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.simple_Pmin, where TypeParam = DefaultDoubleVIEnvironment (2 ms)
[ RUN ] BeliefExplorationAPITest/0.simple_slippery_Pmax
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.simple_slippery_Pmax, where TypeParam = DefaultDoubleVIEnvironment (1 ms)
[ RUN ] BeliefExplorationAPITest/0.simple_slippery_Pmin
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.simple_slippery_Pmin, where TypeParam = DefaultDoubleVIEnvironment (1 ms)
[ RUN ] BeliefExplorationAPITest/0.simple_Rmax
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.simple_Rmax, where TypeParam = DefaultDoubleVIEnvironment (1 ms)
[ RUN ] BeliefExplorationAPITest/0.simple_Rmin
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.simple_Rmin, where TypeParam = DefaultDoubleVIEnvironment (1 ms)
[ RUN ] BeliefExplorationAPITest/0.simple_slippery_Rmax
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.simple_slippery_Rmax, where TypeParam = DefaultDoubleVIEnvironment (1 ms)
[ RUN ] BeliefExplorationAPITest/0.simple_slippery_Rmin
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.simple_slippery_Rmin, where TypeParam = DefaultDoubleVIEnvironment (1 ms)
[ RUN ] BeliefExplorationAPITest/0.maze2_Rmin
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.maze2_Rmin, where TypeParam = DefaultDoubleVIEnvironment (4 ms)
[ RUN ] BeliefExplorationAPITest/0.maze2_slippery_Rmin
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.maze2_slippery_Rmin, where TypeParam = DefaultDoubleVIEnvironment (4 ms)
[ RUN ] BeliefExplorationAPITest/0.refuel_Pmax
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.refuel_Pmax, where TypeParam = DefaultDoubleVIEnvironment (3 ms)
[ RUN ] BeliefExplorationAPITest/0.refuel_Pmin
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.refuel_Pmin, where TypeParam = DefaultDoubleVIEnvironment (3 ms)
[ RUN ] BeliefExplorationAPITest/0.simple2_Rmax
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.simple2_Rmax, where TypeParam = DefaultDoubleVIEnvironment (0 ms)
[ RUN ] BeliefExplorationAPITest/0.noHeuristicValues
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] BeliefExplorationAPITest/0.noHeuristicValues, where TypeParam = DefaultDoubleVIEnvironment (0 ms)
[----------] 14 tests from BeliefExplorationAPITest/0 (30 ms total)

[----------] Global test environment tear-down
[==========] 14 tests from 1 test suite ran. (30 ms total)
[ PASSED ] 0 tests.
[ FAILED ] 14 tests, listed below:
[ FAILED ] BeliefExplorationAPITest/0.simple_Pmax, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.simple_Pmin, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.simple_slippery_Pmax, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.simple_slippery_Pmin, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.simple_Rmax, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.simple_Rmin, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.simple_slippery_Rmax, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.simple_slippery_Rmin, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.maze2_Rmin, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.maze2_slippery_Rmin, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.refuel_Pmax, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.refuel_Pmin, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.simple2_Rmax, where TypeParam = DefaultDoubleVIEnvironment
[ FAILED ] BeliefExplorationAPITest/0.noHeuristicValues, where TypeParam = DefaultDoubleVIEnvironment

14 FAILED TESTS

36% tests passed, 23 tests failed out of 36

Total Test time (real) = 184.00 sec

The following tests FAILED:
3 - run-test-builder (Failed)
5 - run-test-model (Failed)
7 - run-test-simulator (Failed)
9 - run-test-storage (Failed)
10 - run-test-transformer (Failed)
11 - run-test-utility (Failed)
12 - run-test-modelchecker-csl (Failed)
13 - run-test-modelchecker-exploration (Failed)
15 - run-test-modelchecker-multiobjective (Failed)
17 - run-test-modelchecker-prctl-dtmc (Failed)
18 - run-test-modelchecker-prctl-mdp (Failed)
19 - run-test-dft-api (Failed)
26 - run-test-pars-analysis (Failed)
27 - run-test-pars-modelchecker (Failed)
28 - run-test-pars-utility (Failed)
29 - run-test-pars-derivative (Failed)
30 - run-test-pars-transformer (Failed)
31 - run-test-permissive-analysis (Failed)
32 - run-test-pomdp-analysis (Failed)
33 - run-test-pomdp-transformation (Failed)
34 - run-test-pomdp-modelchecker (Failed)
35 - run-test-pomdp-tracking (Failed)
36 - run-test-pomdp-api (Failed)
Errors while running CTest
make[3]: *** [CMakeFiles/check.dir/build.make:70: CMakeFiles/check] Error 8
make[2]: *** [CMakeFiles/Makefile2:1657: CMakeFiles/check.dir/all] Error 2
make[1]: *** [CMakeFiles/Makefile2:1664: CMakeFiles/check.dir/rule] Error 2
make: *** [Makefile:680: check] Error 2

@sjunges
Copy link
Contributor

sjunges commented Feb 16, 2025

Hey,

thanks for the report.

the error says that the optional dependency z3 was not available during compilation. We recommend installing z3, but depending on what you want to do, you will not need it.

However, the absence of z3 does not explain why the other tests fail. Could you post here why run-test-model fails?

@AlexBork can you look into the error messages that are given for the POMDPs? I guess we need some skipping.

-- Sebastian

@AlanLeAI
Copy link
Author

this is all the error message

ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitPrismModelBuilderTest.Dtmc (3 ms)
[ RUN ] ExplicitPrismModelBuilderTest.Ctmc
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitPrismModelBuilderTest.Ctmc (3 ms)
[ RUN ] ExplicitPrismModelBuilderTest.Mdp
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitPrismModelBuilderTest.Mdp (1 ms)
[ RUN ] ExplicitPrismModelBuilderTest.Ma
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitPrismModelBuilderTest.Ma (0 ms)
[ RUN ] ExplicitPrismModelBuilderTest.POMdp
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitPrismModelBuilderTest.POMdp (0 ms)
[ RUN ] ExplicitPrismModelBuilderTest.FailComposition
[ OK ] ExplicitPrismModelBuilderTest.FailComposition (0 ms)
[ RUN ] ExplicitPrismModelBuilderTest.FailUnbounded
/home/exouser/xSRL/storm/src/test/storm/builder/ExplicitPrismModelBuilderTest.cpp:167: Failure
Expected: storm::builder::ExplicitModelBuilder(program).build() throws an exception of type storm::exceptions::WrongFormatException.
Actual: it throws storm::exceptions::NotSupportedException with description "NotSupportedException: Storm is compiled without Z3 support.".
[ FAILED ] ExplicitPrismModelBuilderTest.FailUnbounded (0 ms)
[ RUN ] ExplicitPrismModelBuilderTest.ExportExplicitLookup
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitPrismModelBuilderTest.ExportExplicitLookup (0 ms)
[ RUN ] ExplicitPrismModelBuilderTest.CallbackActionMask
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitPrismModelBuilderTest.CallbackActionMask (1 ms)
[----------] 9 tests from ExplicitPrismModelBuilderTest (12 ms total)

[----------] 8 tests from ExplicitJaniModelBuilderTest
[ RUN ] ExplicitJaniModelBuilderTest.Dtmc
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitJaniModelBuilderTest.Dtmc (1 ms)
[ RUN ] ExplicitJaniModelBuilderTest.pdtmc
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitJaniModelBuilderTest.pdtmc (1 ms)
[ RUN ] ExplicitJaniModelBuilderTest.Ctmc
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitJaniModelBuilderTest.Ctmc (2 ms)
[ RUN ] ExplicitJaniModelBuilderTest.Mdp
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitJaniModelBuilderTest.Mdp (1 ms)
[ RUN ] ExplicitJaniModelBuilderTest.Ma
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitJaniModelBuilderTest.Ma (0 ms)
[ RUN ] ExplicitJaniModelBuilderTest.FailComposition
[ OK ] ExplicitJaniModelBuilderTest.FailComposition (0 ms)
[ RUN ] ExplicitJaniModelBuilderTest.unassignedVariables
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExplicitJaniModelBuilderTest.unassignedVariables (0 ms)
[ RUN ] ExplicitJaniModelBuilderTest.enumerateInitial
[ OK ] ExplicitJaniModelBuilderTest.enumerateInitial (1 ms)
[----------] 8 tests from ExplicitJaniModelBuilderTest (9 ms total)

[----------] 4 tests from DdPrismModelBuilderTest_Sylvan
[ RUN ] DdPrismModelBuilderTest_Sylvan.Dtmc
[ OK ] DdPrismModelBuilderTest_Sylvan.Dtmc (1466 ms)
[ RUN ] DdPrismModelBuilderTest_Sylvan.Ctmc
[ OK ] DdPrismModelBuilderTest_Sylvan.Ctmc (1037 ms)
[ RUN ] DdPrismModelBuilderTest_Sylvan.Mdp
[ OK ] DdPrismModelBuilderTest_Sylvan.Mdp (2802 ms)
[ RUN ] DdPrismModelBuilderTest_Sylvan.Composition
[ OK ] DdPrismModelBuilderTest_Sylvan.Composition (112 ms)
[----------] 4 tests from DdPrismModelBuilderTest_Sylvan (5418 ms total)

[----------] 4 tests from DdPrismModelBuilderTest_Cudd
[ RUN ] DdPrismModelBuilderTest_Cudd.Dtmc
[ OK ] DdPrismModelBuilderTest_Cudd.Dtmc (70 ms)
[ RUN ] DdPrismModelBuilderTest_Cudd.Ctmc
[ OK ] DdPrismModelBuilderTest_Cudd.Ctmc (24 ms)
[ RUN ] DdPrismModelBuilderTest_Cudd.Mdp
[ OK ] DdPrismModelBuilderTest_Cudd.Mdp (232 ms)
[ RUN ] DdPrismModelBuilderTest_Cudd.Composition
[ OK ] DdPrismModelBuilderTest_Cudd.Composition (5 ms)
[----------] 4 tests from DdPrismModelBuilderTest_Cudd (333 ms total)

[----------] 1 test from UnboundedTest_Sylvan
[ RUN ] UnboundedTest_Sylvan.Mdp
[ OK ] UnboundedTest_Sylvan.Mdp (0 ms)
[----------] 1 test from UnboundedTest_Sylvan (0 ms total)

[----------] 1 test from UnboundedTest_Cudd
[ RUN ] UnboundedTest_Cudd.Mdp
[ OK ] UnboundedTest_Cudd.Mdp (0 ms)
[----------] 1 test from UnboundedTest_Cudd (0 ms total)

[----------] 6 tests from DdJaniModelBuilderTest_Sylvan
[ RUN ] DdJaniModelBuilderTest_Sylvan.Dtmc
[ OK ] DdJaniModelBuilderTest_Sylvan.Dtmc (2456 ms)
[ RUN ] DdJaniModelBuilderTest_Sylvan.Ctmc
[ OK ] DdJaniModelBuilderTest_Sylvan.Ctmc (2456 ms)
[ RUN ] DdJaniModelBuilderTest_Sylvan.Mdp
[ OK ] DdJaniModelBuilderTest_Sylvan.Mdp (4413 ms)
[ RUN ] DdJaniModelBuilderTest_Sylvan.SynchronizationVectors
[ OK ] DdJaniModelBuilderTest_Sylvan.SynchronizationVectors (269 ms)
[ RUN ] DdJaniModelBuilderTest_Sylvan.Composition
[ OK ] DdJaniModelBuilderTest_Sylvan.Composition (39 ms)
[ RUN ] DdJaniModelBuilderTest_Sylvan.InputEnabling
[ OK ] DdJaniModelBuilderTest_Sylvan.InputEnabling (66 ms)
[----------] 6 tests from DdJaniModelBuilderTest_Sylvan (9703 ms total)

[----------] 6 tests from DdJaniModelBuilderTest_Cudd
[ RUN ] DdJaniModelBuilderTest_Cudd.Dtmc
[ OK ] DdJaniModelBuilderTest_Cudd.Dtmc (54 ms)
[ RUN ] DdJaniModelBuilderTest_Cudd.Ctmc
[ OK ] DdJaniModelBuilderTest_Cudd.Ctmc (49 ms)
[ RUN ] DdJaniModelBuilderTest_Cudd.Mdp
[ OK ] DdJaniModelBuilderTest_Cudd.Mdp (267 ms)
[ RUN ] DdJaniModelBuilderTest_Cudd.SynchronizationVectors
[ OK ] DdJaniModelBuilderTest_Cudd.SynchronizationVectors (6 ms)
[ RUN ] DdJaniModelBuilderTest_Cudd.Composition
[ OK ] DdJaniModelBuilderTest_Cudd.Composition (2 ms)
[ RUN ] DdJaniModelBuilderTest_Cudd.InputEnabling
[ OK ] DdJaniModelBuilderTest_Cudd.InputEnabling (1 ms)
[----------] 6 tests from DdJaniModelBuilderTest_Cudd (381 ms total)

[----------] Global test environment tear-down
[==========] 39 tests from 8 test suites ran. (15859 ms total)
[ PASSED ] 25 tests.
[ FAILED ] 14 tests, listed below:
[ FAILED ] ExplicitPrismModelBuilderTest.Dtmc
[ FAILED ] ExplicitPrismModelBuilderTest.Ctmc
[ FAILED ] ExplicitPrismModelBuilderTest.Mdp
[ FAILED ] ExplicitPrismModelBuilderTest.Ma
[ FAILED ] ExplicitPrismModelBuilderTest.POMdp
[ FAILED ] ExplicitPrismModelBuilderTest.FailUnbounded
[ FAILED ] ExplicitPrismModelBuilderTest.ExportExplicitLookup
[ FAILED ] ExplicitPrismModelBuilderTest.CallbackActionMask
[ FAILED ] ExplicitJaniModelBuilderTest.Dtmc
[ FAILED ] ExplicitJaniModelBuilderTest.pdtmc
[ FAILED ] ExplicitJaniModelBuilderTest.Ctmc
[ FAILED ] ExplicitJaniModelBuilderTest.Mdp
[ FAILED ] ExplicitJaniModelBuilderTest.Ma
[ FAILED ] ExplicitJaniModelBuilderTest.unassignedVariables

14 FAILED TESTS

  Start  4: run-test-logic

4/36 Test #4: run-test-logic ......................... Passed 0.02 sec
Start 5: run-test-model
5/36 Test #5: run-test-model .........................***Failed 0.02 sec
[==========] Running 2 tests from 2 test suites.
[----------] Global test environment set-up.
[----------] 1 test from StateLabelingTest
[ RUN ] StateLabelingTest.RemoveLabel
[ OK ] StateLabelingTest.RemoveLabel (0 ms)
[----------] 1 test from StateLabelingTest (0 ms total)

[----------] 1 test from MarkovAutomatonTest
[ RUN ] MarkovAutomatonTest.ZenoCycleCheck
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonTest.ZenoCycleCheck (4 ms)
[----------] 1 test from MarkovAutomatonTest (4 ms total)

[----------] Global test environment tear-down
[==========] 2 tests from 2 test suites ran. (4 ms total)
[ PASSED ] 1 test.
[ FAILED ] 1 test, listed below:
[ FAILED ] MarkovAutomatonTest.ZenoCycleCheck

1 FAILED TEST

  Start  6: run-test-parser

6/36 Test #6: run-test-parser ........................ Passed 0.58 sec
Start 7: run-test-simulator
7/36 Test #7: run-test-simulator .....................***Failed 0.02 sec
[==========] Running 1 test from 1 test suite.
[----------] Global test environment set-up.
[----------] 1 test from PrismProgramSimulatorTest
[ RUN ] PrismProgramSimulatorTest.KnuthYaoDieTest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] PrismProgramSimulatorTest.KnuthYaoDieTest (2 ms)
[----------] 1 test from PrismProgramSimulatorTest (2 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test suite ran. (2 ms total)
[ PASSED ] 0 tests.
[ FAILED ] 1 test, listed below:
[ FAILED ] PrismProgramSimulatorTest.KnuthYaoDieTest

1 FAILED TEST

  Start  8: run-test-solver

8/36 Test #8: run-test-solver ........................ Passed 0.13 sec
Start 9: run-test-storage
9/36 Test #9: run-test-storage .......................***Failed 9.00 sec
[==========] Running 169 tests from 17 test suites.
[----------] Global test environment set-up.
[----------] 1 test from BitVectorDeathTest
[ RUN ] BitVectorDeathTest.GetSetAssertion
WARNING: Not testing GetSetAssertions, as they are disabled in release mode.
[ OK ] BitVectorDeathTest.GetSetAssertion (0 ms)
[----------] 1 test from BitVectorDeathTest (0 ms total)

[----------] 10 tests from SymbolicModelBisimulationDecomposition
[ RUN ] SymbolicModelBisimulationDecomposition.Die_Cudd
[ OK ] SymbolicModelBisimulationDecomposition.Die_Cudd (12 ms)
[ RUN ] SymbolicModelBisimulationDecomposition.DiePartialQuotient_Cudd
[ OK ] SymbolicModelBisimulationDecomposition.DiePartialQuotient_Cudd (10 ms)
[ RUN ] SymbolicModelBisimulationDecomposition.Die_Sylvan
[ OK ] SymbolicModelBisimulationDecomposition.Die_Sylvan (239 ms)
[ RUN ] SymbolicModelBisimulationDecomposition.DiePartialQuotient_Sylvan
[ OK ] SymbolicModelBisimulationDecomposition.DiePartialQuotient_Sylvan (369 ms)
[ RUN ] SymbolicModelBisimulationDecomposition.Crowds_Cudd
[ OK ] SymbolicModelBisimulationDecomposition.Crowds_Cudd (149 ms)
[ RUN ] SymbolicModelBisimulationDecomposition.Crowds_Sylvan
[ OK ] SymbolicModelBisimulationDecomposition.Crowds_Sylvan (2449 ms)
[ RUN ] SymbolicModelBisimulationDecomposition.TwoDice_Cudd
[ OK ] SymbolicModelBisimulationDecomposition.TwoDice_Cudd (11 ms)
[ RUN ] SymbolicModelBisimulationDecomposition.TwoDice_Sylvan
[ OK ] SymbolicModelBisimulationDecomposition.TwoDice_Sylvan (838 ms)
[ RUN ] SymbolicModelBisimulationDecomposition.AsynchronousLeader_Cudd
[ OK ] SymbolicModelBisimulationDecomposition.AsynchronousLeader_Cudd (1066 ms)
[ RUN ] SymbolicModelBisimulationDecomposition.AsynchronousLeader_Sylvan
[ OK ] SymbolicModelBisimulationDecomposition.AsynchronousLeader_Sylvan (3208 ms)
[----------] 10 tests from SymbolicModelBisimulationDecomposition (8356 ms total)

[----------] 26 tests from SylvanDd
[ RUN ] SylvanDd.Constants
[ OK ] SylvanDd.Constants (7 ms)
[ RUN ] SylvanDd.BddConstants
[ OK ] SylvanDd.BddConstants (40 ms)
[ RUN ] SylvanDd.BddExistAbstractRepresentative
[ OK ] SylvanDd.BddExistAbstractRepresentative (18 ms)
[ RUN ] SylvanDd.AddMinAbstractRepresentative
[ OK ] SylvanDd.AddMinAbstractRepresentative (19 ms)
[ RUN ] SylvanDd.AddMaxAbstractRepresentative
[ OK ] SylvanDd.AddMaxAbstractRepresentative (12 ms)
[ RUN ] SylvanDd.AddGetMetaVariableTest
[ OK ] SylvanDd.AddGetMetaVariableTest (20 ms)
[ RUN ] SylvanDd.EncodingTest
[ OK ] SylvanDd.EncodingTest (19 ms)
[ RUN ] SylvanDd.RationalFunctionConstants
[ OK ] SylvanDd.RationalFunctionConstants (14 ms)
[ RUN ] SylvanDd.RationalFunctionToDouble
[ OK ] SylvanDd.RationalFunctionToDouble (19 ms)
[ RUN ] SylvanDd.RationalFunctionEncodingTest
[ OK ] SylvanDd.RationalFunctionEncodingTest (18 ms)
[ RUN ] SylvanDd.RationalFunctionIdentityTest
[ OK ] SylvanDd.RationalFunctionIdentityTest (20 ms)
[ RUN ] SylvanDd.RangeTest
[ OK ] SylvanDd.RangeTest (21 ms)
[ RUN ] SylvanDd.DoubleIdentityTest
[ OK ] SylvanDd.DoubleIdentityTest (21 ms)
[ RUN ] SylvanDd.UintIdentityTest
[ OK ] SylvanDd.UintIdentityTest (27 ms)
[ RUN ] SylvanDd.OperatorTest
[ OK ] SylvanDd.OperatorTest (29 ms)
[ RUN ] SylvanDd.AbstractionTest
[ OK ] SylvanDd.AbstractionTest (14 ms)
[ RUN ] SylvanDd.SwapTest
[ OK ] SylvanDd.SwapTest (26 ms)
[ RUN ] SylvanDd.MultiplyMatrixTest
[ OK ] SylvanDd.MultiplyMatrixTest (21 ms)
[ RUN ] SylvanDd.GetSetValueTest
[ OK ] SylvanDd.GetSetValueTest (13 ms)
[ RUN ] SylvanDd.AddIteratorTest
[ OK ] SylvanDd.AddIteratorTest (15 ms)
[ RUN ] SylvanDd.AddOddTest
[ OK ] SylvanDd.AddOddTest (42 ms)
[ RUN ] SylvanDd.AddSharpenTest
[ OK ] SylvanDd.AddSharpenTest (9 ms)
[ RUN ] SylvanDd.AddRationalSharpenTest
[ OK ] SylvanDd.AddRationalSharpenTest (19 ms)
[ RUN ] SylvanDd.AddToRationalTest
[ OK ] SylvanDd.AddToRationalTest (21 ms)
[ RUN ] SylvanDd.BddOddTest
[ OK ] SylvanDd.BddOddTest (47 ms)
[ RUN ] SylvanDd.BddToExpressionTest
[ OK ] SylvanDd.BddToExpressionTest (11 ms)
[----------] 26 tests from SylvanDd (556 ms total)

[----------] 3 tests from StronglyConnectedComponentDecomposition
[ RUN ] StronglyConnectedComponentDecomposition.SmallSystemFromMatrix
[ OK ] StronglyConnectedComponentDecomposition.SmallSystemFromMatrix (0 ms)
[ RUN ] StronglyConnectedComponentDecomposition.FullSystem1
[ OK ] StronglyConnectedComponentDecomposition.FullSystem1 (0 ms)
[ RUN ] StronglyConnectedComponentDecomposition.FullSystem2
[ OK ] StronglyConnectedComponentDecomposition.FullSystem2 (0 ms)
[----------] 3 tests from StronglyConnectedComponentDecomposition (0 ms total)

[----------] 6 tests from SparseMatrixBuilder
[ RUN ] SparseMatrixBuilder.CreationEmpty
[ OK ] SparseMatrixBuilder.CreationEmpty (0 ms)
[ RUN ] SparseMatrixBuilder.CreationWithDimensions
[ OK ] SparseMatrixBuilder.CreationWithDimensions (0 ms)
[ RUN ] SparseMatrixBuilder.CreationWithoutNumberOfEntries
[ OK ] SparseMatrixBuilder.CreationWithoutNumberOfEntries (0 ms)
[ RUN ] SparseMatrixBuilder.CreationWithNumberOfRows
[ OK ] SparseMatrixBuilder.CreationWithNumberOfRows (0 ms)
[ RUN ] SparseMatrixBuilder.CreationWithoutDimensions
[ OK ] SparseMatrixBuilder.CreationWithoutDimensions (0 ms)
[ RUN ] SparseMatrixBuilder.AddNextValue
[ OK ] SparseMatrixBuilder.AddNextValue (0 ms)
[----------] 6 tests from SparseMatrixBuilder (0 ms total)

[----------] 22 tests from SparseMatrix
[ RUN ] SparseMatrix.Build
[ OK ] SparseMatrix.Build (0 ms)
[ RUN ] SparseMatrix.DiagonalEntries
[ OK ] SparseMatrix.DiagonalEntries (0 ms)
[ RUN ] SparseMatrix.CreationWithMovingContents
[ OK ] SparseMatrix.CreationWithMovingContents (0 ms)
[ RUN ] SparseMatrix.CopyConstruct
[ OK ] SparseMatrix.CopyConstruct (0 ms)
[ RUN ] SparseMatrix.CopyAssign
[ OK ] SparseMatrix.CopyAssign (0 ms)
[ RUN ] SparseMatrix.MakeAbsorbing
[ OK ] SparseMatrix.MakeAbsorbing (0 ms)
[ RUN ] SparseMatrix.MakeRowGroupAbsorbing
[ OK ] SparseMatrix.MakeRowGroupAbsorbing (0 ms)
[ RUN ] SparseMatrix.rowGroupIndices
[ OK ] SparseMatrix.rowGroupIndices (0 ms)
[ RUN ] SparseMatrix.ConstrainedRowSumVector
[ OK ] SparseMatrix.ConstrainedRowSumVector (0 ms)
[ RUN ] SparseMatrix.Submatrix
[ OK ] SparseMatrix.Submatrix (0 ms)
[ RUN ] SparseMatrix.RestrictRows
[ OK ] SparseMatrix.RestrictRows (0 ms)
[ RUN ] SparseMatrix.Transpose
[ OK ] SparseMatrix.Transpose (0 ms)
[ RUN ] SparseMatrix.EquationSystem
[ OK ] SparseMatrix.EquationSystem (0 ms)
[ RUN ] SparseMatrix.JacobiDecomposition
[ OK ] SparseMatrix.JacobiDecomposition (0 ms)
[ RUN ] SparseMatrix.PointwiseMultiplicationVector
[ OK ] SparseMatrix.PointwiseMultiplicationVector (0 ms)
[ RUN ] SparseMatrix.MatrixVectorMultiply
[ OK ] SparseMatrix.MatrixVectorMultiply (0 ms)
[ RUN ] SparseMatrix.Iteration
[ OK ] SparseMatrix.Iteration (0 ms)
[ RUN ] SparseMatrix.RowSum
[ OK ] SparseMatrix.RowSum (0 ms)
[ RUN ] SparseMatrix.IsSubmatrix
[ OK ] SparseMatrix.IsSubmatrix (0 ms)
[ RUN ] SparseMatrix.PermuteRows
[ OK ] SparseMatrix.PermuteRows (0 ms)
[ RUN ] SparseMatrix.PermuteRowGroupsAndColumns
[ OK ] SparseMatrix.PermuteRowGroupsAndColumns (0 ms)
[ RUN ] SparseMatrix.DropZeroEntries
[ OK ] SparseMatrix.DropZeroEntries (0 ms)
[----------] 22 tests from SparseMatrix (0 ms total)

[----------] 2 tests from SchedulerTest
[ RUN ] SchedulerTest.TotalDeterministicMemorylessScheduler
[ OK ] SchedulerTest.TotalDeterministicMemorylessScheduler (0 ms)
[ RUN ] SchedulerTest.PartialDeterministicMemorylessScheduler
[ OK ] SchedulerTest.PartialDeterministicMemorylessScheduler (0 ms)
[----------] 2 tests from SchedulerTest (0 ms total)

[----------] 3 tests from PrismProgramTest
[ RUN ] PrismProgramTest.ConvertToJani
[ OK ] PrismProgramTest.ConvertToJani (8 ms)
[ RUN ] PrismProgramTest.ReplaceInitialStates
[ OK ] PrismProgramTest.ReplaceInitialStates (1 ms)
[ RUN ] PrismProgramTest.ReplaceConstantByVariable
[ OK ] PrismProgramTest.ReplaceConstantByVariable (2 ms)
[----------] 3 tests from PrismProgramTest (12 ms total)

[----------] 1 test from NondeterministicModelBisimulationDecomposition
[ RUN ] NondeterministicModelBisimulationDecomposition.TwoDice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] NondeterministicModelBisimulationDecomposition.TwoDice (1 ms)
[----------] 1 test from NondeterministicModelBisimulationDecomposition (1 ms total)

[----------] 5 tests from MaximalEndComponentDecomposition
[ RUN ] MaximalEndComponentDecomposition.FullSystem1
[ OK ] MaximalEndComponentDecomposition.FullSystem1 (0 ms)
[ RUN ] MaximalEndComponentDecomposition.FullSystem2
[ OK ] MaximalEndComponentDecomposition.FullSystem2 (0 ms)
[ RUN ] MaximalEndComponentDecomposition.Subsystem
[ OK ] MaximalEndComponentDecomposition.Subsystem (0 ms)
[ RUN ] MaximalEndComponentDecomposition.Example1
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MaximalEndComponentDecomposition.Example1 (0 ms)
[ RUN ] MaximalEndComponentDecomposition.Example2
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MaximalEndComponentDecomposition.Example2 (0 ms)
[----------] 5 tests from MaximalEndComponentDecomposition (1 ms total)

[----------] 19 tests from JaniLocalEliminator
[ RUN ] JaniLocalEliminator.PropertyTypeTest
[ OK ] JaniLocalEliminator.PropertyTypeTest (0 ms)
[ RUN ] JaniLocalEliminator.NoPropertiesTest
[ OK ] JaniLocalEliminator.NoPropertiesTest (0 ms)
[ RUN ] JaniLocalEliminator.FlatteningTest
ERROR (Z3SmtSolver.cpp:88): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.FlatteningTest (0 ms)
[ RUN ] JaniLocalEliminator.MissingGuardCompletion
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.MissingGuardCompletion (0 ms)
[ RUN ] JaniLocalEliminator.LoopDetection
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.LoopDetection (0 ms)
[ RUN ] JaniLocalEliminator.IsPartOfPropComputation
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.IsPartOfPropComputation (0 ms)
[ RUN ] JaniLocalEliminator.IsInitialDetection
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.IsInitialDetection (0 ms)
[ RUN ] JaniLocalEliminator.IsEliminableDetection
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.IsEliminableDetection (0 ms)
[ RUN ] JaniLocalEliminator.IsVariablePartOfProperty
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.IsVariablePartOfProperty (0 ms)
[ RUN ] JaniLocalEliminator.UnfoldingBoundedInteger
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.UnfoldingBoundedInteger (0 ms)
[ RUN ] JaniLocalEliminator.UnfoldingBoolean
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.UnfoldingBoolean (0 ms)
[ RUN ] JaniLocalEliminator.UnfoldingTwice
/home/exouser/xSRL/storm/src/test/storm/storage/JaniLocalEliminatorTests.cpp:375: Failure
Expected: eliminator.eliminate() throws an exception of type storm::exceptions::InvalidOperationException.
Actual: it throws storm::exceptions::NotSupportedException with description "NotSupportedException: Storm is compiled without Z3 support.".
[ FAILED ] JaniLocalEliminator.UnfoldingTwice (0 ms)
[ RUN ] JaniLocalEliminator.UnfoldingWithSink
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.UnfoldingWithSink (0 ms)
[ RUN ] JaniLocalEliminator.IsPartOfPropPropagationUnfolding
[ OK ] JaniLocalEliminator.IsPartOfPropPropagationUnfolding (0 ms)
[ RUN ] JaniLocalEliminator.EliminationNewGuardTest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.EliminationNewGuardTest (0 ms)
[ RUN ] JaniLocalEliminator.EliminationNewProbabilityTest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.EliminationNewProbabilityTest (0 ms)
[ RUN ] JaniLocalEliminator.EliminationNewUpdatesTest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.EliminationNewUpdatesTest (0 ms)
[ RUN ] JaniLocalEliminator.EliminationMultipleEdges
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.EliminationMultipleEdges (0 ms)
[ RUN ] JaniLocalEliminator.EliminationMultiplicityTest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] JaniLocalEliminator.EliminationMultiplicityTest (0 ms)
[----------] 19 tests from JaniLocalEliminator (6 ms total)

[----------] 9 tests from Expression
[ RUN ] Expression.FactoryMethodTest
[ OK ] Expression.FactoryMethodTest (0 ms)
[ RUN ] Expression.AccessorTest
[ OK ] Expression.AccessorTest (0 ms)
[ RUN ] Expression.OperatorTest
[ OK ] Expression.OperatorTest (0 ms)
[ RUN ] Expression.SubstitutionTest
[ OK ] Expression.SubstitutionTest (0 ms)
[ RUN ] Expression.SimplificationTest
[ OK ] Expression.SimplificationTest (0 ms)
[ RUN ] Expression.SimpleEvaluationTest
[ OK ] Expression.SimpleEvaluationTest (0 ms)
[ RUN ] Expression.VisitorTest
[ OK ] Expression.VisitorTest (0 ms)
[ RUN ] Expression.RationalFunctionToExpressionTest
[ OK ] Expression.RationalFunctionToExpressionTest (0 ms)
[ RUN ] Expression.RationalFunctionToExpressionTest_no_params
[ OK ] Expression.RationalFunctionToExpressionTest_no_params (0 ms)
[----------] 9 tests from Expression (1 ms total)

[----------] 3 tests from ExpressionEvaluation
[ RUN ] ExpressionEvaluation.NaiveEvaluation
[ OK ] ExpressionEvaluation.NaiveEvaluation (0 ms)
[ RUN ] ExpressionEvaluation.ExprTkEvaluation
[ OK ] ExpressionEvaluation.ExprTkEvaluation (0 ms)
[ RUN ] ExpressionEvaluation.NegativeModulo
[ OK ] ExpressionEvaluation.NegativeModulo (0 ms)
[----------] 3 tests from ExpressionEvaluation (0 ms total)

[----------] 2 tests from DeterministicModelBisimulationDecomposition
[ RUN ] DeterministicModelBisimulationDecomposition.Die
[ OK ] DeterministicModelBisimulationDecomposition.Die (0 ms)
[ RUN ] DeterministicModelBisimulationDecomposition.Crowds
[ OK ] DeterministicModelBisimulationDecomposition.Crowds (25 ms)
[----------] 2 tests from DeterministicModelBisimulationDecomposition (25 ms total)

[----------] 19 tests from CuddDd
[ RUN ] CuddDd.AddConstants
[ OK ] CuddDd.AddConstants (0 ms)
[ RUN ] CuddDd.BddConstants
[ OK ] CuddDd.BddConstants (0 ms)
[ RUN ] CuddDd.BddExistAbstractRepresentative
[ OK ] CuddDd.BddExistAbstractRepresentative (0 ms)
[ RUN ] CuddDd.AddMinExistAbstractRepresentative
[ OK ] CuddDd.AddMinExistAbstractRepresentative (0 ms)
[ RUN ] CuddDd.AddMaxExistAbstractRepresentative
[ OK ] CuddDd.AddMaxExistAbstractRepresentative (0 ms)
[ RUN ] CuddDd.AddGetMetaVariableTest
[ OK ] CuddDd.AddGetMetaVariableTest (0 ms)
[ RUN ] CuddDd.EncodingTest
[ OK ] CuddDd.EncodingTest (0 ms)
[ RUN ] CuddDd.RangeTest
[ OK ] CuddDd.RangeTest (0 ms)
[ RUN ] CuddDd.IdentityTest
[ OK ] CuddDd.IdentityTest (0 ms)
[ RUN ] CuddDd.OperatorTest
[ OK ] CuddDd.OperatorTest (0 ms)

[----------] Global test environment tear-down
[==========] 169 tests from 17 test suites ran. (8978 ms total)
[ PASSED ] 150 tests.
[ FAILED ] 19 tests, listed below:
[ FAILED ] NondeterministicModelBisimulationDecomposition.TwoDice
[ FAILED ] MaximalEndComponentDecomposition.Example1
[ FAILED ] MaximalEndComponentDecomposition.Example2
[ FAILED ] JaniLocalEliminator.FlatteningTest
[ FAILED ] JaniLocalEliminator.MissingGuardCompletion
[ FAILED ] JaniLocalEliminator.LoopDetection
[ FAILED ] JaniLocalEliminator.IsPartOfPropComputation
[ FAILED ] JaniLocalEliminator.IsInitialDetection
[ FAILED ] JaniLocalEliminator.IsEliminableDetection
[ FAILED ] JaniLocalEliminator.IsVariablePartOfProperty
[ FAILED ] JaniLocalEliminator.UnfoldingBoundedInteger
[ FAILED ] JaniLocalEliminator.UnfoldingBoolean
[ FAILED ] JaniLocalEliminator.UnfoldingTwice
[ FAILED ] JaniLocalEliminator.UnfoldingWithSink
[ FAILED ] JaniLocalEliminator.EliminationNewGuardTest
[ FAILED ] JaniLocalEliminator.EliminationNewProbabilityTest
[ FAILED ] JaniLocalEliminator.EliminationNewUpdatesTest
[ FAILED ] JaniLocalEliminator.EliminationMultipleEdges
[ FAILED ] JaniLocalEliminator.EliminationMultiplicityTest

19 FAILED TESTS

  Start 10: run-test-transformer

10/36 Test #10: run-test-transformer ...................***Failed 0.04 sec
[==========] Running 12 tests from 6 test suites.
[----------] Global test environment set-up.
[----------] 4 tests from StatePermuterTest
[ RUN ] StatePermuterTest.BrpTest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] StatePermuterTest.BrpTest (5 ms)
[ RUN ] StatePermuterTest.ClusterTest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] StatePermuterTest.ClusterTest (3 ms)
[ RUN ] StatePermuterTest.Coin22Test
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] StatePermuterTest.Coin22Test (1 ms)
[ RUN ] StatePermuterTest.StreamTest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] StatePermuterTest.StreamTest (0 ms)
[----------] 4 tests from StatePermuterTest (10 ms total)

[----------] 3 tests from NonMarkovianChainTransformerTest
[ RUN ] NonMarkovianChainTransformerTest.StreamExampleTest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] NonMarkovianChainTransformerTest.StreamExampleTest (1 ms)
[ RUN ] NonMarkovianChainTransformerTest.ChainElimination1ExampleTest
[ OK ] NonMarkovianChainTransformerTest.ChainElimination1ExampleTest (4 ms)
[ RUN ] NonMarkovianChainTransformerTest.ChainElimination2ExampleTest
[ OK ] NonMarkovianChainTransformerTest.ChainElimination2ExampleTest (1 ms)
[----------] 3 tests from NonMarkovianChainTransformerTest (6 ms total)

[----------] 1 test from NeutralECRemover
[ RUN ] NeutralECRemover.SimpleModelTest
[ OK ] NeutralECRemover.SimpleModelTest (0 ms)
[----------] 1 test from NeutralECRemover (0 ms total)

[----------] 1 test from DAProductBuilderTest_aUb
[ RUN ] DAProductBuilderTest_aUb.Dtmc
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DAProductBuilderTest_aUb.Dtmc (0 ms)
[----------] 1 test from DAProductBuilderTest_aUb (0 ms total)

[----------] 1 test from DAProductBuilderTest_aWb
[ RUN ] DAProductBuilderTest_aWb.Dtmc
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DAProductBuilderTest_aWb.Dtmc (0 ms)
[----------] 1 test from DAProductBuilderTest_aWb (0 ms total)

[----------] 2 tests from AddUncertaintyTransformerTest
[ RUN ] AddUncertaintyTransformerTest.BrpTest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] AddUncertaintyTransformerTest.BrpTest (1 ms)
[ RUN ] AddUncertaintyTransformerTest.Coin22Test
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] AddUncertaintyTransformerTest.Coin22Test (1 ms)
[----------] 2 tests from AddUncertaintyTransformerTest (3 ms total)

[----------] Global test environment tear-down
[==========] 12 tests from 6 test suites ran. (22 ms total)
[ PASSED ] 3 tests.
[ FAILED ] 9 tests, listed below:
[ FAILED ] StatePermuterTest.BrpTest
[ FAILED ] StatePermuterTest.ClusterTest
[ FAILED ] StatePermuterTest.Coin22Test
[ FAILED ] StatePermuterTest.StreamTest
[ FAILED ] NonMarkovianChainTransformerTest.StreamExampleTest
[ FAILED ] DAProductBuilderTest_aUb.Dtmc
[ FAILED ] DAProductBuilderTest_aWb.Dtmc
[ FAILED ] AddUncertaintyTransformerTest.BrpTest
[ FAILED ] AddUncertaintyTransformerTest.Coin22Test

9 FAILED TESTS

  Start 11: run-test-utility

11/36 Test #11: run-test-utility .......................***Failed 3.44 sec
[----------] 7 tests from KSPTest
[ RUN ] KSPTest.dijkstra
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] KSPTest.dijkstra (6 ms)
[ RUN ] KSPTest.singleTarget
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] KSPTest.singleTarget (3 ms)
[ RUN ] KSPTest.reentry
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] KSPTest.reentry (2 ms)
[ RUN ] KSPTest.groupTarget
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] KSPTest.groupTarget (2 ms)
[ RUN ] KSPTest.kTooLargeException
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] KSPTest.kTooLargeException (2 ms)
[ RUN ] KSPTest.kspStateSet
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] KSPTest.kspStateSet (2 ms)
[ RUN ] KSPTest.kspPathAsList
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] KSPTest.kspPathAsList (2 ms)
[----------] 7 tests from KSPTest (22 ms total)

[----------] 6 tests from GraphTest
[ RUN ] GraphTest.SymbolicProb01_Cudd
[ OK ] GraphTest.SymbolicProb01_Cudd (26 ms)
[ RUN ] GraphTest.SymbolicProb01_Sylvan
[ OK ] GraphTest.SymbolicProb01_Sylvan (1083 ms)
[ RUN ] GraphTest.SymbolicProb01MinMax_Cudd
[ OK ] GraphTest.SymbolicProb01MinMax_Cudd (78 ms)
[ RUN ] GraphTest.SymbolicProb01MinMax_Sylvan
[ OK ] GraphTest.SymbolicProb01MinMax_Sylvan (2199 ms)
[ RUN ] GraphTest.ExplicitProb01
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] GraphTest.ExplicitProb01 (2 ms)
[ RUN ] GraphTest.ExplicitProb01MinMax
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] GraphTest.ExplicitProb01MinMax (3 ms)
[----------] 6 tests from GraphTest (3394 ms total)

[----------] 2 tests from FileTest
[ RUN ] FileTest.GetLine
[ OK ] FileTest.GetLine (0 ms)
[ RUN ] FileTest.GetLineEmpty
[ OK ] FileTest.GetLineEmpty (0 ms)
[----------] 2 tests from FileTest (0 ms total)

[----------] Global test environment tear-down
[==========] 20 tests from 4 test suites ran. (3416 ms total)
[ PASSED ] 11 tests.
[ FAILED ] 9 tests, listed below:
[ FAILED ] KSPTest.dijkstra
[ FAILED ] KSPTest.singleTarget
[ FAILED ] KSPTest.reentry
[ FAILED ] KSPTest.groupTarget
[ FAILED ] KSPTest.kTooLargeException
[ FAILED ] KSPTest.kspStateSet
[ FAILED ] KSPTest.kspPathAsList
[ FAILED ] GraphTest.ExplicitProb01
[ FAILED ] GraphTest.ExplicitProb01MinMax

9 FAILED TESTS

  Start 12: run-test-modelchecker-csl

12/36 Test #12: run-test-modelchecker-csl ..............***Failed 4.80 sec
[==========] Running 160 tests from 33 test suites.
[----------] Global test environment set-up.
[----------] 1 test from SteadyStateCtmcCslModelCheckerTest/0, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ RUN ] SteadyStateCtmcCslModelCheckerTest/0.steadystatetest
[ OK ] SteadyStateCtmcCslModelCheckerTest/0.steadystatetest (4 ms)
[----------] 1 test from SteadyStateCtmcCslModelCheckerTest/0 (4 ms total)

[----------] 1 test from SteadyStateCtmcCslModelCheckerTest/1, where TypeParam = (anonymous namespace)::SparseSoundEvtEnvironment
[ RUN ] SteadyStateCtmcCslModelCheckerTest/1.steadystatetest
[ OK ] SteadyStateCtmcCslModelCheckerTest/1.steadystatetest (2 ms)
[----------] 1 test from SteadyStateCtmcCslModelCheckerTest/1 (2 ms total)

[----------] 1 test from SteadyStateCtmcCslModelCheckerTest/2, where TypeParam = (anonymous namespace)::SparseClassicEnvironment
[ RUN ] SteadyStateCtmcCslModelCheckerTest/2.steadystatetest
[ OK ] SteadyStateCtmcCslModelCheckerTest/2.steadystatetest (2 ms)
[----------] 1 test from SteadyStateCtmcCslModelCheckerTest/2 (2 ms total)

[----------] 1 test from SteadyStateCtmcCslModelCheckerTest/3, where TypeParam = (anonymous namespace)::SparseEigenRationalLuEnvironment
[ RUN ] SteadyStateCtmcCslModelCheckerTest/3.steadystatetest
[ OK ] SteadyStateCtmcCslModelCheckerTest/3.steadystatetest (2 ms)
[----------] 1 test from SteadyStateCtmcCslModelCheckerTest/3 (2 ms total)

[----------] 5 tests from MarkovAutomatonCslModelCheckerTest/0, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationEnvironment
[ RUN ] MarkovAutomatonCslModelCheckerTest/0.server
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/0.server, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationEnvironment (1 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/0.simple
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/0.simple, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationEnvironment (0 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/0.simple2
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/0.simple2, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationEnvironment (1 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/0.LtlSimple
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/MarkovAutomatonCslModelCheckerTest.cpp:381: Skipped

[ SKIPPED ] MarkovAutomatonCslModelCheckerTest/0.LtlSimple (0 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/0.HOASimple
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/0.HOASimple, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationEnvironment (0 ms)
[----------] 5 tests from MarkovAutomatonCslModelCheckerTest/0 (5 ms total)

[----------] 5 tests from MarkovAutomatonCslModelCheckerTest/1, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment
[ RUN ] MarkovAutomatonCslModelCheckerTest/1.server
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/1.server, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment (1 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/1.simple
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/1.simple, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment (0 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/1.simple2
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/1.simple2, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment (1 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/1.LtlSimple
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/MarkovAutomatonCslModelCheckerTest.cpp:381: Skipped

[ SKIPPED ] MarkovAutomatonCslModelCheckerTest/1.LtlSimple (0 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/1.HOASimple
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/1.HOASimple, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment (0 ms)
[----------] 5 tests from MarkovAutomatonCslModelCheckerTest/1 (4 ms total)

[----------] 5 tests from MarkovAutomatonCslModelCheckerTest/2, where TypeParam = (anonymous namespace)::JaniHybridDoubleValueIterationEnvironment
[ RUN ] MarkovAutomatonCslModelCheckerTest/2.server
[ OK ] MarkovAutomatonCslModelCheckerTest/2.server (81 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/2.simple
[ OK ] MarkovAutomatonCslModelCheckerTest/2.simple (65 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/2.simple2
[ OK ] MarkovAutomatonCslModelCheckerTest/2.simple2 (87 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/2.LtlSimple
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/MarkovAutomatonCslModelCheckerTest.cpp:381: Skipped

[ SKIPPED ] MarkovAutomatonCslModelCheckerTest/2.LtlSimple (0 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/2.HOASimple
[ OK ] MarkovAutomatonCslModelCheckerTest/2.HOASimple (59 ms)
[----------] 5 tests from MarkovAutomatonCslModelCheckerTest/2 (295 ms total)

[----------] 5 tests from MarkovAutomatonCslModelCheckerTest/3, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment
[ RUN ] MarkovAutomatonCslModelCheckerTest/3.server
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/3.server, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment (1 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/3.simple
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/3.simple, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment (0 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/3.simple2
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/3.simple2, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment (1 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/3.LtlSimple
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/MarkovAutomatonCslModelCheckerTest.cpp:381: Skipped

[ SKIPPED ] MarkovAutomatonCslModelCheckerTest/3.LtlSimple (0 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/3.HOASimple
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/3.HOASimple, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment (0 ms)
[----------] 5 tests from MarkovAutomatonCslModelCheckerTest/3 (4 ms total)

[----------] 5 tests from MarkovAutomatonCslModelCheckerTest/4, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment
[ RUN ] MarkovAutomatonCslModelCheckerTest/4.server
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/4.server, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment (1 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/4.simple
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/4.simple, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment (0 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/4.simple2
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/4.simple2, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment (1 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/4.LtlSimple
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/MarkovAutomatonCslModelCheckerTest.cpp:381: Skipped

[ SKIPPED ] MarkovAutomatonCslModelCheckerTest/4.LtlSimple (0 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/4.HOASimple
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/4.HOASimple, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment (0 ms)
[----------] 5 tests from MarkovAutomatonCslModelCheckerTest/4 (4 ms total)

[----------] 5 tests from MarkovAutomatonCslModelCheckerTest/5, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment
[ RUN ] MarkovAutomatonCslModelCheckerTest/5.server
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/5.server, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment (1 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/5.simple
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/5.simple, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment (0 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/5.simple2
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/5.simple2, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment (1 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/5.LtlSimple
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/MarkovAutomatonCslModelCheckerTest.cpp:381: Skipped

[ SKIPPED ] MarkovAutomatonCslModelCheckerTest/5.LtlSimple (0 ms)
[ RUN ] MarkovAutomatonCslModelCheckerTest/5.HOASimple
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MarkovAutomatonCslModelCheckerTest/5.HOASimple, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment (0 ms)
[----------] 5 tests from MarkovAutomatonCslModelCheckerTest/5 (4 ms total)

[----------] 6 tests from LraCtmcCslModelCheckerTest/0, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment
[ RUN ] LraCtmcCslModelCheckerTest/0.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/0.Cluster, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/0.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/0.Embedded, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/0.Polling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/0.Polling, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/0.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/0.Tandem, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/0.Rewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/0.Rewards, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment (0 ms)
[ RUN ] LraCtmcCslModelCheckerTest/0.kanban
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/0.kanban, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment (3 ms)
[----------] 6 tests from LraCtmcCslModelCheckerTest/0 (13 ms total)

[----------] 6 tests from LraCtmcCslModelCheckerTest/1, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment
[ RUN ] LraCtmcCslModelCheckerTest/1.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/1.Cluster, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/1.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/1.Embedded, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/1.Polling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/1.Polling, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/1.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/1.Tandem, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/1.Rewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/1.Rewards, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment (0 ms)
[ RUN ] LraCtmcCslModelCheckerTest/1.kanban
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/1.kanban, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment (3 ms)
[----------] 6 tests from LraCtmcCslModelCheckerTest/1 (14 ms total)

[----------] 6 tests from LraCtmcCslModelCheckerTest/2, where TypeParam = (anonymous namespace)::GBJaniHybridCuddGmmxxGmresEnvironment
[ RUN ] LraCtmcCslModelCheckerTest/2.Cluster
[ OK ] LraCtmcCslModelCheckerTest/2.Cluster (17 ms)
[ RUN ] LraCtmcCslModelCheckerTest/2.Embedded
[ OK ] LraCtmcCslModelCheckerTest/2.Embedded (19 ms)
[ RUN ] LraCtmcCslModelCheckerTest/2.Polling
[ OK ] LraCtmcCslModelCheckerTest/2.Polling (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/2.Tandem
[ OK ] LraCtmcCslModelCheckerTest/2.Tandem (2 ms)
[ RUN ] LraCtmcCslModelCheckerTest/2.Rewards
[ OK ] LraCtmcCslModelCheckerTest/2.Rewards (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/2.kanban
[ OK ] LraCtmcCslModelCheckerTest/2.kanban (10 ms)
[----------] 6 tests from LraCtmcCslModelCheckerTest/2 (55 ms total)

[----------] 6 tests from LraCtmcCslModelCheckerTest/4, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment
[ RUN ] LraCtmcCslModelCheckerTest/4.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/4.Cluster, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/4.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/4.Embedded, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/4.Polling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/4.Polling, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/4.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/4.Tandem, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/4.Rewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/4.Rewards, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment (0 ms)
[ RUN ] LraCtmcCslModelCheckerTest/4.kanban
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/4.kanban, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment (3 ms)
[----------] 6 tests from LraCtmcCslModelCheckerTest/4 (14 ms total)

[----------] 6 tests from LraCtmcCslModelCheckerTest/5, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment
[ RUN ] LraCtmcCslModelCheckerTest/5.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/5.Cluster, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/5.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/5.Embedded, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/5.Polling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/5.Polling, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/5.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/5.Tandem, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/5.Rewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/5.Rewards, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment (0 ms)
[ RUN ] LraCtmcCslModelCheckerTest/5.kanban
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/5.kanban, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment (3 ms)
[----------] 6 tests from LraCtmcCslModelCheckerTest/5 (13 ms total)

[----------] 6 tests from LraCtmcCslModelCheckerTest/6, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment
[ RUN ] LraCtmcCslModelCheckerTest/6.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/6.Cluster, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment (2 ms)
[ RUN ] LraCtmcCslModelCheckerTest/6.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/6.Embedded, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/6.Polling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/6.Polling, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/6.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/6.Tandem, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/6.Rewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/6.Rewards, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment (0 ms)
[ RUN ] LraCtmcCslModelCheckerTest/6.kanban
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/6.kanban, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment (3 ms)
[----------] 6 tests from LraCtmcCslModelCheckerTest/6 (13 ms total)

[----------] 6 tests from LraCtmcCslModelCheckerTest/7, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment
[ RUN ] LraCtmcCslModelCheckerTest/7.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/7.Cluster, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment (2 ms)
[ RUN ] LraCtmcCslModelCheckerTest/7.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/7.Embedded, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/7.Polling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/7.Polling, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/7.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/7.Tandem, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/7.Rewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/7.Rewards, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment (0 ms)
[ RUN ] LraCtmcCslModelCheckerTest/7.kanban
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/7.kanban, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment (3 ms)
[----------] 6 tests from LraCtmcCslModelCheckerTest/7 (13 ms total)

[----------] 6 tests from LraCtmcCslModelCheckerTest/8, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment
[ RUN ] LraCtmcCslModelCheckerTest/8.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/8.Cluster, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment (2 ms)
[ RUN ] LraCtmcCslModelCheckerTest/8.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/8.Embedded, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/8.Polling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/8.Polling, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/8.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/8.Tandem, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/8.Rewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/8.Rewards, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment (0 ms)
[ RUN ] LraCtmcCslModelCheckerTest/8.kanban
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/8.kanban, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment (3 ms)
[----------] 6 tests from LraCtmcCslModelCheckerTest/8 (12 ms total)

[----------] 6 tests from LraCtmcCslModelCheckerTest/9, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment
[ RUN ] LraCtmcCslModelCheckerTest/9.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/9.Cluster, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment (2 ms)
[ RUN ] LraCtmcCslModelCheckerTest/9.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/9.Embedded, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/9.Polling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/9.Polling, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/9.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/9.Tandem, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/9.Rewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/9.Rewards, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment (0 ms)
[ RUN ] LraCtmcCslModelCheckerTest/9.kanban
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/9.kanban, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment (3 ms)
[----------] 6 tests from LraCtmcCslModelCheckerTest/9 (12 ms total)

[----------] 6 tests from LraCtmcCslModelCheckerTest/10, where TypeParam = (anonymous namespace)::SoundEnvironment
[ RUN ] LraCtmcCslModelCheckerTest/10.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/10.Cluster, where TypeParam = (anonymous namespace)::SoundEnvironment (2 ms)
[ RUN ] LraCtmcCslModelCheckerTest/10.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/10.Embedded, where TypeParam = (anonymous namespace)::SoundEnvironment (3 ms)
[ RUN ] LraCtmcCslModelCheckerTest/10.Polling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/10.Polling, where TypeParam = (anonymous namespace)::SoundEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/10.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/10.Tandem, where TypeParam = (anonymous namespace)::SoundEnvironment (1 ms)
[ RUN ] LraCtmcCslModelCheckerTest/10.Rewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/10.Rewards, where TypeParam = (anonymous namespace)::SoundEnvironment (0 ms)
[ RUN ] LraCtmcCslModelCheckerTest/10.kanban
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] LraCtmcCslModelCheckerTest/10.kanban, where TypeParam = (anonymous namespace)::SoundEnvironment (3 ms)
[----------] 6 tests from LraCtmcCslModelCheckerTest/10 (12 ms total)

[----------] 1 test from ExpectedVisitingTimesCtmcCslModelCheckerTest/0, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ RUN ] ExpectedVisitingTimesCtmcCslModelCheckerTest/0.expvisittimestest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExpectedVisitingTimesCtmcCslModelCheckerTest/0.expvisittimestest, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment (1 ms)
[----------] 1 test from ExpectedVisitingTimesCtmcCslModelCheckerTest/0 (1 ms total)

[----------] 1 test from ExpectedVisitingTimesCtmcCslModelCheckerTest/1, where TypeParam = (anonymous namespace)::SparseSoundEnvironment
[ RUN ] ExpectedVisitingTimesCtmcCslModelCheckerTest/1.expvisittimestest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExpectedVisitingTimesCtmcCslModelCheckerTest/1.expvisittimestest, where TypeParam = (anonymous namespace)::SparseSoundEnvironment (1 ms)
[----------] 1 test from ExpectedVisitingTimesCtmcCslModelCheckerTest/1 (1 ms total)

[----------] 1 test from ExpectedVisitingTimesCtmcCslModelCheckerTest/2, where TypeParam = (anonymous namespace)::SparseEigenRationalLuEnvironment
[ RUN ] ExpectedVisitingTimesCtmcCslModelCheckerTest/2.expvisittimestest
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ExpectedVisitingTimesCtmcCslModelCheckerTest/2.expvisittimestest, where TypeParam = (anonymous namespace)::SparseEigenRationalLuEnvironment (1 ms)
[----------] 1 test from ExpectedVisitingTimesCtmcCslModelCheckerTest/2 (1 ms total)

[----------] 7 tests from CtmcCslModelCheckerTest/0, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ RUN ] CtmcCslModelCheckerTest/0.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/0.Cluster, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment (3 ms)
[ RUN ] CtmcCslModelCheckerTest/0.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/0.Embedded, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment (3 ms)
[ RUN ] CtmcCslModelCheckerTest/0.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/0.Tandem, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment (1 ms)
[ RUN ] CtmcCslModelCheckerTest/0.simple2
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/0.simple2, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment (1 ms)
[ RUN ] CtmcCslModelCheckerTest/0.LtlProbabilitiesEmbedded
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:502: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/0.LtlProbabilitiesEmbedded (0 ms)
[ RUN ] CtmcCslModelCheckerTest/0.LtlProbabilitiesPolling
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:532: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/0.LtlProbabilitiesPolling (0 ms)
[ RUN ] CtmcCslModelCheckerTest/0.HOAProbabilitiesPolling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/0.HOAProbabilitiesPolling, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment (1 ms)
[----------] 7 tests from CtmcCslModelCheckerTest/0 (10 ms total)

[----------] 7 tests from CtmcCslModelCheckerTest/1, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment
[ RUN ] CtmcCslModelCheckerTest/1.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/1.Cluster, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment (3 ms)
[ RUN ] CtmcCslModelCheckerTest/1.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/1.Embedded, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment (3 ms)
[ RUN ] CtmcCslModelCheckerTest/1.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/1.Tandem, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment (1 ms)
[ RUN ] CtmcCslModelCheckerTest/1.simple2
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/1.simple2, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment (1 ms)
[ RUN ] CtmcCslModelCheckerTest/1.LtlProbabilitiesEmbedded
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:502: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/1.LtlProbabilitiesEmbedded (0 ms)
[ RUN ] CtmcCslModelCheckerTest/1.LtlProbabilitiesPolling
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:532: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/1.LtlProbabilitiesPolling (0 ms)
[ RUN ] CtmcCslModelCheckerTest/1.HOAProbabilitiesPolling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/1.HOAProbabilitiesPolling, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment (1 ms)
[----------] 7 tests from CtmcCslModelCheckerTest/1 (11 ms total)

[----------] 7 tests from CtmcCslModelCheckerTest/2, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment
[ RUN ] CtmcCslModelCheckerTest/2.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/2.Cluster, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment (2 ms)
[ RUN ] CtmcCslModelCheckerTest/2.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/2.Embedded, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment (3 ms)
[ RUN ] CtmcCslModelCheckerTest/2.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/2.Tandem, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment (1 ms)
[ RUN ] CtmcCslModelCheckerTest/2.simple2
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/2.simple2, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment (1 ms)
[ RUN ] CtmcCslModelCheckerTest/2.LtlProbabilitiesEmbedded
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:502: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/2.LtlProbabilitiesEmbedded (0 ms)
[ RUN ] CtmcCslModelCheckerTest/2.LtlProbabilitiesPolling
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:532: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/2.LtlProbabilitiesPolling (0 ms)
[ RUN ] CtmcCslModelCheckerTest/2.HOAProbabilitiesPolling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/2.HOAProbabilitiesPolling, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment (1 ms)
[----------] 7 tests from CtmcCslModelCheckerTest/2 (10 ms total)

[----------] 7 tests from CtmcCslModelCheckerTest/3, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment
[ RUN ] CtmcCslModelCheckerTest/3.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/3.Cluster, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment (3 ms)
[ RUN ] CtmcCslModelCheckerTest/3.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/3.Embedded, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment (3 ms)
[ RUN ] CtmcCslModelCheckerTest/3.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/3.Tandem, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment (1 ms)
[ RUN ] CtmcCslModelCheckerTest/3.simple2
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/3.simple2, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment (1 ms)
[ RUN ] CtmcCslModelCheckerTest/3.LtlProbabilitiesEmbedded
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:502: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/3.LtlProbabilitiesEmbedded (0 ms)
[ RUN ] CtmcCslModelCheckerTest/3.LtlProbabilitiesPolling
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:532: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/3.LtlProbabilitiesPolling (0 ms)
[ RUN ] CtmcCslModelCheckerTest/3.HOAProbabilitiesPolling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/3.HOAProbabilitiesPolling, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment (1 ms)
[----------] 7 tests from CtmcCslModelCheckerTest/3 (10 ms total)

[----------] 7 tests from CtmcCslModelCheckerTest/4, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment
[ RUN ] CtmcCslModelCheckerTest/4.Cluster
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/4.Cluster, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment (3 ms)
[ RUN ] CtmcCslModelCheckerTest/4.Embedded
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/4.Embedded, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment (3 ms)
[ RUN ] CtmcCslModelCheckerTest/4.Tandem
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/4.Tandem, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment (1 ms)
[ RUN ] CtmcCslModelCheckerTest/4.simple2
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/4.simple2, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment (1 ms)
[ RUN ] CtmcCslModelCheckerTest/4.LtlProbabilitiesEmbedded
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:502: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/4.LtlProbabilitiesEmbedded (0 ms)
[ RUN ] CtmcCslModelCheckerTest/4.LtlProbabilitiesPolling
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:532: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/4.LtlProbabilitiesPolling (0 ms)
[ RUN ] CtmcCslModelCheckerTest/4.HOAProbabilitiesPolling
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] CtmcCslModelCheckerTest/4.HOAProbabilitiesPolling, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment (1 ms)
[----------] 7 tests from CtmcCslModelCheckerTest/4 (10 ms total)

[----------] 7 tests from CtmcCslModelCheckerTest/5, where TypeParam = (anonymous namespace)::HybridCuddGmmxxGmresEnvironment
[ RUN ] CtmcCslModelCheckerTest/5.Cluster
[ OK ] CtmcCslModelCheckerTest/5.Cluster (82 ms)
[ RUN ] CtmcCslModelCheckerTest/5.Embedded
[ OK ] CtmcCslModelCheckerTest/5.Embedded (52 ms)
[ RUN ] CtmcCslModelCheckerTest/5.Tandem
[ OK ] CtmcCslModelCheckerTest/5.Tandem (4 ms)
[ RUN ] CtmcCslModelCheckerTest/5.simple2
[ OK ] CtmcCslModelCheckerTest/5.simple2 (1 ms)
[ RUN ] CtmcCslModelCheckerTest/5.LtlProbabilitiesEmbedded
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:502: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/5.LtlProbabilitiesEmbedded (0 ms)
[ RUN ] CtmcCslModelCheckerTest/5.LtlProbabilitiesPolling
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:532: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/5.LtlProbabilitiesPolling (0 ms)
[ RUN ] CtmcCslModelCheckerTest/5.HOAProbabilitiesPolling
[ OK ] CtmcCslModelCheckerTest/5.HOAProbabilitiesPolling (2 ms)
[----------] 7 tests from CtmcCslModelCheckerTest/5 (142 ms total)

[----------] 7 tests from CtmcCslModelCheckerTest/6, where TypeParam = (anonymous namespace)::JaniHybridCuddGmmxxGmresEnvironment
[ RUN ] CtmcCslModelCheckerTest/6.Cluster
[ OK ] CtmcCslModelCheckerTest/6.Cluster (99 ms)
[ RUN ] CtmcCslModelCheckerTest/6.Embedded
[ OK ] CtmcCslModelCheckerTest/6.Embedded (60 ms)
[ RUN ] CtmcCslModelCheckerTest/6.Tandem
[ OK ] CtmcCslModelCheckerTest/6.Tandem (5 ms)
[ RUN ] CtmcCslModelCheckerTest/6.simple2
[ OK ] CtmcCslModelCheckerTest/6.simple2 (1 ms)
[ RUN ] CtmcCslModelCheckerTest/6.LtlProbabilitiesEmbedded
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:502: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/6.LtlProbabilitiesEmbedded (0 ms)
[ RUN ] CtmcCslModelCheckerTest/6.LtlProbabilitiesPolling
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:532: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/6.LtlProbabilitiesPolling (0 ms)
[ RUN ] CtmcCslModelCheckerTest/6.HOAProbabilitiesPolling
[ OK ] CtmcCslModelCheckerTest/6.HOAProbabilitiesPolling (3 ms)
[----------] 7 tests from CtmcCslModelCheckerTest/6 (170 ms total)

[----------] 7 tests from CtmcCslModelCheckerTest/7, where TypeParam = (anonymous namespace)::HybridSylvanGmmxxGmresEnvironment
[ RUN ] CtmcCslModelCheckerTest/7.Cluster
[ OK ] CtmcCslModelCheckerTest/7.Cluster (820 ms)
[ RUN ] CtmcCslModelCheckerTest/7.Embedded
[ OK ] CtmcCslModelCheckerTest/7.Embedded (718 ms)
[ RUN ] CtmcCslModelCheckerTest/7.Tandem
[ OK ] CtmcCslModelCheckerTest/7.Tandem (199 ms)
[ RUN ] CtmcCslModelCheckerTest/7.simple2
[ OK ] CtmcCslModelCheckerTest/7.simple2 (34 ms)
[ RUN ] CtmcCslModelCheckerTest/7.LtlProbabilitiesEmbedded
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:502: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/7.LtlProbabilitiesEmbedded (0 ms)
[ RUN ] CtmcCslModelCheckerTest/7.LtlProbabilitiesPolling
/home/exouser/xSRL/storm/src/test/storm/modelchecker/csl/CtmcCslModelCheckerTest.cpp:532: Skipped

[ SKIPPED ] CtmcCslModelCheckerTest/7.LtlProbabilitiesPolling (0 ms)
[ RUN ] CtmcCslModelCheckerTest/7.HOAProbabilitiesPolling
[ OK ] CtmcCslModelCheckerTest/7.HOAProbabilitiesPolling (36 ms)
[----------] 7 tests from CtmcCslModelCheckerTest/7 (1810 ms total)

[----------] 1 test from CtmcCslModelCheckerTest
[ RUN ] CtmcCslModelCheckerTest.TransientProbabilities
[ OK ] CtmcCslModelCheckerTest.TransientProbabilities (0 ms)
[----------] 1 test from CtmcCslModelCheckerTest (0 ms total)

[----------] Global test environment tear-down
[==========] 160 tests from 33 test suites ran. (4772 ms total)
[ PASSED ] 36 tests.
[ SKIPPED ] 22 tests, listed below:
[ SKIPPED ] MarkovAutomatonCslModelCheckerTest/0.LtlSimple
[ SKIPPED ] MarkovAutomatonCslModelCheckerTest/1.LtlSimple
[ SKIPPED ] MarkovAutomatonCslModelCheckerTest/2.LtlSimple
[ SKIPPED ] MarkovAutomatonCslModelCheckerTest/3.LtlSimple
[ SKIPPED ] MarkovAutomatonCslModelCheckerTest/4.LtlSimple
[ SKIPPED ] MarkovAutomatonCslModelCheckerTest/5.LtlSimple
[ SKIPPED ] CtmcCslModelCheckerTest/0.LtlProbabilitiesEmbedded
[ SKIPPED ] CtmcCslModelCheckerTest/0.LtlProbabilitiesPolling
[ SKIPPED ] CtmcCslModelCheckerTest/1.LtlProbabilitiesEmbedded
[ SKIPPED ] CtmcCslModelCheckerTest/1.LtlProbabilitiesPolling
[ SKIPPED ] CtmcCslModelCheckerTest/2.LtlProbabilitiesEmbedded
[ SKIPPED ] CtmcCslModelCheckerTest/2.LtlProbabilitiesPolling
[ SKIPPED ] CtmcCslModelCheckerTest/3.LtlProbabilitiesEmbedded
[ SKIPPED ] CtmcCslModelCheckerTest/3.LtlProbabilitiesPolling
[ SKIPPED ] CtmcCslModelCheckerTest/4.LtlProbabilitiesEmbedded
[ SKIPPED ] CtmcCslModelCheckerTest/4.LtlProbabilitiesPolling
[ SKIPPED ] CtmcCslModelCheckerTest/5.LtlProbabilitiesEmbedded
[ SKIPPED ] CtmcCslModelCheckerTest/5.LtlProbabilitiesPolling
[ SKIPPED ] CtmcCslModelCheckerTest/6.LtlProbabilitiesEmbedded
[ SKIPPED ] CtmcCslModelCheckerTest/6.LtlProbabilitiesPolling
[ SKIPPED ] CtmcCslModelCheckerTest/7.LtlProbabilitiesEmbedded
[ SKIPPED ] CtmcCslModelCheckerTest/7.LtlProbabilitiesPolling
[ FAILED ] 102 tests, listed below:
[ FAILED ] MarkovAutomatonCslModelCheckerTest/0.server, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/0.simple, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/0.simple2, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/0.HOASimple, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/1.server, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/1.simple, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/1.simple2, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/1.HOASimple, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/3.server, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/3.simple, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/3.simple2, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/3.HOASimple, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/4.server, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/4.simple, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/4.simple2, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/4.HOASimple, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/5.server, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/5.simple, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/5.simple2, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment
[ FAILED ] MarkovAutomatonCslModelCheckerTest/5.HOASimple, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/0.Cluster, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/0.Embedded, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/0.Polling, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/0.Tandem, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/0.Rewards, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/0.kanban, where TypeParam = (anonymous namespace)::GBSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/1.Cluster, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/1.Embedded, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/1.Polling, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/1.Tandem, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/1.Rewards, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/1.kanban, where TypeParam = (anonymous namespace)::GBJaniSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/4.Cluster, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/4.Embedded, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/4.Polling, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/4.Tandem, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/4.Rewards, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/4.kanban, where TypeParam = (anonymous namespace)::GBSparseEigenDGmresEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/5.Cluster, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/5.Embedded, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/5.Polling, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/5.Tandem, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/5.Rewards, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/5.kanban, where TypeParam = (anonymous namespace)::GBSparseEigenDoubleLUEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/6.Cluster, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/6.Embedded, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/6.Polling, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/6.Tandem, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/6.Rewards, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/6.kanban, where TypeParam = (anonymous namespace)::GBSparseNativeSorEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/7.Cluster, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/7.Embedded, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/7.Polling, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/7.Tandem, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/7.Rewards, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/7.kanban, where TypeParam = (anonymous namespace)::DistrSparseGmmxxGmresIluEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/8.Cluster, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/8.Embedded, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/8.Polling, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/8.Tandem, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/8.Rewards, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/8.kanban, where TypeParam = (anonymous namespace)::DistrSparseEigenDoubleLUEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/9.Cluster, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/9.Embedded, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/9.Polling, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/9.Tandem, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/9.Rewards, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/9.kanban, where TypeParam = (anonymous namespace)::ValueIterationSparseEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/10.Cluster, where TypeParam = (anonymous namespace)::SoundEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/10.Embedded, where TypeParam = (anonymous namespace)::SoundEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/10.Polling, where TypeParam = (anonymous namespace)::SoundEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/10.Tandem, where TypeParam = (anonymous namespace)::SoundEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/10.Rewards, where TypeParam = (anonymous namespace)::SoundEnvironment
[ FAILED ] LraCtmcCslModelCheckerTest/10.kanban, where TypeParam = (anonymous namespace)::SoundEnvironment
[ FAILED ] ExpectedVisitingTimesCtmcCslModelCheckerTest/0.expvisittimestest, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ FAILED ] ExpectedVisitingTimesCtmcCslModelCheckerTest/1.expvisittimestest, where TypeParam = (anonymous namespace)::SparseSoundEnvironment
[ FAILED ] ExpectedVisitingTimesCtmcCslModelCheckerTest/2.expvisittimestest, where TypeParam = (anonymous namespace)::SparseEigenRationalLuEnvironment
[ FAILED ] CtmcCslModelCheckerTest/0.Cluster, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ FAILED ] CtmcCslModelCheckerTest/0.Embedded, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ FAILED ] CtmcCslModelCheckerTest/0.Tandem, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ FAILED ] CtmcCslModelCheckerTest/0.simple2, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ FAILED ] CtmcCslModelCheckerTest/0.HOAProbabilitiesPolling, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ FAILED ] CtmcCslModelCheckerTest/1.Cluster, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment
[ FAILED ] CtmcCslModelCheckerTest/1.Embedded, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment
[ FAILED ] CtmcCslModelCheckerTest/1.Tandem, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment
[ FAILED ] CtmcCslModelCheckerTest/1.simple2, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment
[ FAILED ] CtmcCslModelCheckerTest/1.HOAProbabilitiesPolling, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment
[ FAILED ] CtmcCslModelCheckerTest/2.Cluster, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment
[ FAILED ] CtmcCslModelCheckerTest/2.Embedded, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment
[ FAILED ] CtmcCslModelCheckerTest/2.Tandem, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment
[ FAILED ] CtmcCslModelCheckerTest/2.simple2, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment
[ FAILED ] CtmcCslModelCheckerTest/2.HOAProbabilitiesPolling, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment
[ FAILED ] CtmcCslModelCheckerTest/3.Cluster, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment
[ FAILED ] CtmcCslModelCheckerTest/3.Embedded, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment
[ FAILED ] CtmcCslModelCheckerTest/3.Tandem, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment
[ FAILED ] CtmcCslModelCheckerTest/3.simple2, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment
[ FAILED ] CtmcCslModelCheckerTest/3.HOAProbabilitiesPolling, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment
[ FAILED ] CtmcCslModelCheckerTest/4.Cluster, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment
[ FAILED ] CtmcCslModelCheckerTest/4.Embedded, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment
[ FAILED ] CtmcCslModelCheckerTest/4.Tandem, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment
[ FAILED ] CtmcCslModelCheckerTest/4.simple2, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment
[ FAILED ] CtmcCslModelCheckerTest/4.HOAProbabilitiesPolling, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment

102 FAILED TESTS

  Start 13: run-test-modelchecker-exploration

13/36 Test #13: run-test-modelchecker-exploration ......***Failed 0.04 sec
[==========] Running 3 tests from 1 test suite.
[----------] Global test environment set-up.
[----------] 3 tests from SparseExplorationModelCheckerTest
[ RUN ] SparseExplorationModelCheckerTest.Dice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseExplorationModelCheckerTest.Dice (8 ms)
[ RUN ] SparseExplorationModelCheckerTest.AsynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseExplorationModelCheckerTest.AsynchronousLeader (5 ms)
[ RUN ] SparseExplorationModelCheckerTest.Cicle
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseExplorationModelCheckerTest.Cicle (0 ms)
[----------] 3 tests from SparseExplorationModelCheckerTest (14 ms total)

[----------] Global test environment tear-down
[==========] 3 tests from 1 test suite ran. (14 ms total)
[ PASSED ] 0 tests.
[ FAILED ] 3 tests, listed below:
[ FAILED ] SparseExplorationModelCheckerTest.Dice
[ FAILED ] SparseExplorationModelCheckerTest.AsynchronousLeader
[ FAILED ] SparseExplorationModelCheckerTest.Cicle

3 FAILED TESTS

  Start 14: run-test-modelchecker-lexicographic

14/36 Test #14: run-test-modelchecker-lexicographic .... Passed 0.03 sec
Start 15: run-test-modelchecker-multiobjective
15/36 Test #15: run-test-modelchecker-multiobjective ...***Failed 0.09 sec
[==========] Running 12 tests from 4 test suites.
[----------] Global test environment set-up.
[----------] 6 tests from SparseMdpMultiDimensionalRewardUnfoldingTest
[ RUN ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_one_dim_walk_small
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_one_dim_walk_small (8 ms)
[ RUN ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_one_dim_walk_large
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_one_dim_walk_large (2 ms)
[ RUN ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_tiny_ec
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_tiny_ec (1 ms)
[ RUN ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_zeroconf_dl
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_zeroconf_dl (6 ms)
[ RUN ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_csma
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_csma (4 ms)
[ RUN ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_lower_bounds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_lower_bounds (1 ms)
[----------] 6 tests from SparseMdpMultiDimensionalRewardUnfoldingTest (25 ms total)

[----------] 2 tests from SparseMdpCbMultiObjectiveModelCheckerTest
[ RUN ] SparseMdpCbMultiObjectiveModelCheckerTest.consensus
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseMdpCbMultiObjectiveModelCheckerTest.consensus (5 ms)
[ RUN ] SparseMdpCbMultiObjectiveModelCheckerTest.zeroconf
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseMdpCbMultiObjectiveModelCheckerTest.zeroconf (5 ms)
[----------] 2 tests from SparseMdpCbMultiObjectiveModelCheckerTest (10 ms total)

[----------] 1 test from SparseMaCbMultiObjectiveModelCheckerTest
[ RUN ] SparseMaCbMultiObjectiveModelCheckerTest.server
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseMaCbMultiObjectiveModelCheckerTest.server (1 ms)
[----------] 1 test from SparseMaCbMultiObjectiveModelCheckerTest (1 ms total)

[----------] 3 tests from SparseDtmcMultiDimensionalRewardUnfoldingTest
[ RUN ] SparseDtmcMultiDimensionalRewardUnfoldingTest.cost_bounded_die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseDtmcMultiDimensionalRewardUnfoldingTest.cost_bounded_die (1 ms)
[ RUN ] SparseDtmcMultiDimensionalRewardUnfoldingTest.cost_bounded_leader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseDtmcMultiDimensionalRewardUnfoldingTest.cost_bounded_leader (3 ms)
[ RUN ] SparseDtmcMultiDimensionalRewardUnfoldingTest.cost_bounded_crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SparseDtmcMultiDimensionalRewardUnfoldingTest.cost_bounded_crowds (7 ms)
[----------] 3 tests from SparseDtmcMultiDimensionalRewardUnfoldingTest (12 ms total)

[----------] Global test environment tear-down
[==========] 12 tests from 4 test suites ran. (50 ms total)
[ PASSED ] 0 tests.
[ FAILED ] 12 tests, listed below:
[ FAILED ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_one_dim_walk_small
[ FAILED ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_one_dim_walk_large
[ FAILED ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_tiny_ec
[ FAILED ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_zeroconf_dl
[ FAILED ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_csma
[ FAILED ] SparseMdpMultiDimensionalRewardUnfoldingTest.single_obj_lower_bounds
[ FAILED ] SparseMdpCbMultiObjectiveModelCheckerTest.consensus
[ FAILED ] SparseMdpCbMultiObjectiveModelCheckerTest.zeroconf
[ FAILED ] SparseMaCbMultiObjectiveModelCheckerTest.server
[ FAILED ] SparseDtmcMultiDimensionalRewardUnfoldingTest.cost_bounded_die
[ FAILED ] SparseDtmcMultiDimensionalRewardUnfoldingTest.cost_bounded_leader
[ FAILED ] SparseDtmcMultiDimensionalRewardUnfoldingTest.cost_bounded_crowds

12 FAILED TESTS

  Start 16: run-test-modelchecker-reachability

16/36 Test #16: run-test-modelchecker-reachability ..... Passed 0.12 sec
Start 17: run-test-modelchecker-prctl-dtmc
17/36 Test #17: run-test-modelchecker-prctl-dtmc .......***Failed 61.45 sec
[==========] Running 178 tests from 42 test suites.
[----------] Global test environment set-up.
[----------] 2 tests from LraDtmcPrctlModelCheckerTest/0, where TypeParam = (anonymous namespace)::GBGmmxxDoubleGmresEnvironment
[ RUN ] LraDtmcPrctlModelCheckerTest/0.LRASingleBscc
[ OK ] LraDtmcPrctlModelCheckerTest/0.LRASingleBscc (1 ms)
[ RUN ] LraDtmcPrctlModelCheckerTest/0.LRA
[ OK ] LraDtmcPrctlModelCheckerTest/0.LRA (0 ms)
[----------] 2 tests from LraDtmcPrctlModelCheckerTest/0 (1 ms total)

[----------] 2 tests from LraDtmcPrctlModelCheckerTest/1, where TypeParam = (anonymous namespace)::GBEigenDoubleDGmresEnvironment
[ RUN ] LraDtmcPrctlModelCheckerTest/1.LRASingleBscc
[ OK ] LraDtmcPrctlModelCheckerTest/1.LRASingleBscc (0 ms)
[ RUN ] LraDtmcPrctlModelCheckerTest/1.LRA
[ OK ] LraDtmcPrctlModelCheckerTest/1.LRA (0 ms)
[----------] 2 tests from LraDtmcPrctlModelCheckerTest/1 (0 ms total)

[----------] 2 tests from LraDtmcPrctlModelCheckerTest/2, where TypeParam = (anonymous namespace)::GBEigenRationalLUEnvironment
[ RUN ] LraDtmcPrctlModelCheckerTest/2.LRASingleBscc
[ OK ] LraDtmcPrctlModelCheckerTest/2.LRASingleBscc (1 ms)
[ RUN ] LraDtmcPrctlModelCheckerTest/2.LRA
[ OK ] LraDtmcPrctlModelCheckerTest/2.LRA (0 ms)
[----------] 2 tests from LraDtmcPrctlModelCheckerTest/2 (1 ms total)

[----------] 2 tests from LraDtmcPrctlModelCheckerTest/3, where TypeParam = (anonymous namespace)::GBNativeSorEnvironment
[ RUN ] LraDtmcPrctlModelCheckerTest/3.LRASingleBscc
[ OK ] LraDtmcPrctlModelCheckerTest/3.LRASingleBscc (0 ms)
[ RUN ] LraDtmcPrctlModelCheckerTest/3.LRA
[ OK ] LraDtmcPrctlModelCheckerTest/3.LRA (0 ms)
[----------] 2 tests from LraDtmcPrctlModelCheckerTest/3 (0 ms total)

[----------] 2 tests from LraDtmcPrctlModelCheckerTest/4, where TypeParam = (anonymous namespace)::GBNativeWalkerChaeEnvironment
[ RUN ] LraDtmcPrctlModelCheckerTest/4.LRASingleBscc
[ OK ] LraDtmcPrctlModelCheckerTest/4.LRASingleBscc (0 ms)
[ RUN ] LraDtmcPrctlModelCheckerTest/4.LRA
[ OK ] LraDtmcPrctlModelCheckerTest/4.LRA (28 ms)
[----------] 2 tests from LraDtmcPrctlModelCheckerTest/4 (28 ms total)

[----------] 2 tests from LraDtmcPrctlModelCheckerTest/5, where TypeParam = (anonymous namespace)::DistrGmmxxDoubleGmresEnvironment
[ RUN ] LraDtmcPrctlModelCheckerTest/5.LRASingleBscc
[ OK ] LraDtmcPrctlModelCheckerTest/5.LRASingleBscc (0 ms)
[ RUN ] LraDtmcPrctlModelCheckerTest/5.LRA
[ OK ] LraDtmcPrctlModelCheckerTest/5.LRA (0 ms)
[----------] 2 tests from LraDtmcPrctlModelCheckerTest/5 (0 ms total)

[----------] 2 tests from LraDtmcPrctlModelCheckerTest/6, where TypeParam = (anonymous namespace)::DistrEigenRationalLUEnvironment
[ RUN ] LraDtmcPrctlModelCheckerTest/6.LRASingleBscc
[ OK ] LraDtmcPrctlModelCheckerTest/6.LRASingleBscc (0 ms)
[ RUN ] LraDtmcPrctlModelCheckerTest/6.LRA
[ OK ] LraDtmcPrctlModelCheckerTest/6.LRA (0 ms)
[----------] 2 tests from LraDtmcPrctlModelCheckerTest/6 (1 ms total)

[----------] 2 tests from LraDtmcPrctlModelCheckerTest/7, where TypeParam = (anonymous namespace)::DistrNativeWalkerChaeEnvironment
[ RUN ] LraDtmcPrctlModelCheckerTest/7.LRASingleBscc
[ OK ] LraDtmcPrctlModelCheckerTest/7.LRASingleBscc (0 ms)
[ RUN ] LraDtmcPrctlModelCheckerTest/7.LRA
[ OK ] LraDtmcPrctlModelCheckerTest/7.LRA (28 ms)
[----------] 2 tests from LraDtmcPrctlModelCheckerTest/7 (28 ms total)

[----------] 2 tests from LraDtmcPrctlModelCheckerTest/8, where TypeParam = (anonymous namespace)::ValueIterationEnvironment
[ RUN ] LraDtmcPrctlModelCheckerTest/8.LRASingleBscc
[ OK ] LraDtmcPrctlModelCheckerTest/8.LRASingleBscc (0 ms)
[ RUN ] LraDtmcPrctlModelCheckerTest/8.LRA
[ OK ] LraDtmcPrctlModelCheckerTest/8.LRA (0 ms)
[----------] 2 tests from LraDtmcPrctlModelCheckerTest/8 (0 ms total)

[----------] 3 tests from ExplicitDtmcPrctlModelCheckerTest
[ RUN ] ExplicitDtmcPrctlModelCheckerTest.Die
[ OK ] ExplicitDtmcPrctlModelCheckerTest.Die (0 ms)
[ RUN ] ExplicitDtmcPrctlModelCheckerTest.Crowds
[ OK ] ExplicitDtmcPrctlModelCheckerTest.Crowds (12 ms)
[ RUN ] ExplicitDtmcPrctlModelCheckerTest.SynchronousLeader
[ OK ] ExplicitDtmcPrctlModelCheckerTest.SynchronousLeader (14 ms)
[----------] 3 tests from ExplicitDtmcPrctlModelCheckerTest (27 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/0, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/0.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/0.Die, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/0.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/0.Crowds, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment (6 ms)
[ RUN ] DtmcPrctlModelCheckerTest/0.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/0.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/0.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/0.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/0.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/0.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/0.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/0.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/0 (16 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/1, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/1.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/1.Die, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment (2 ms)
[ RUN ] DtmcPrctlModelCheckerTest/1.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/1.Crowds, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/1.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/1.SynchronousLeader, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment (4 ms)
[ RUN ] DtmcPrctlModelCheckerTest/1.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/1.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/1.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/1.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/1.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/1.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/1 (13 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/2, where TypeParam = (anonymous namespace)::SparseGmmxxGmresDiagEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/2.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/2.Die, where TypeParam = (anonymous namespace)::SparseGmmxxGmresDiagEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/2.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/2.Crowds, where TypeParam = (anonymous namespace)::SparseGmmxxGmresDiagEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/2.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/2.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseGmmxxGmresDiagEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/2.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/2.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/2.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/2.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/2.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/2.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseGmmxxGmresDiagEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/2 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/3, where TypeParam = (anonymous namespace)::SparseGmmxxBicgstabIluEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/3.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/3.Die, where TypeParam = (anonymous namespace)::SparseGmmxxBicgstabIluEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/3.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/3.Crowds, where TypeParam = (anonymous namespace)::SparseGmmxxBicgstabIluEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/3.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/3.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseGmmxxBicgstabIluEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/3.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/3.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/3.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/3.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/3.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/3.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseGmmxxBicgstabIluEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/3 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/4, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/4.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/4.Die, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/4.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/4.Crowds, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/4.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/4.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/4.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/4.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/4.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/4.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/4.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/4.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/4 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/5, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/5.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/5.Die, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/5.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/5.Crowds, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/5.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/5.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/5.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/5.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/5.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/5.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/5.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/5.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/5 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/6, where TypeParam = (anonymous namespace)::SparseEigenRationalLUEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/6.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/6.Die, where TypeParam = (anonymous namespace)::SparseEigenRationalLUEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/6.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/6.Crowds, where TypeParam = (anonymous namespace)::SparseEigenRationalLUEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/6.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/6.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseEigenRationalLUEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/6.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/6.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/6.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/6.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/6.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/6.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseEigenRationalLUEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/6 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/7, where TypeParam = (anonymous namespace)::SparseRationalEliminationEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/7.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/7.Die, where TypeParam = (anonymous namespace)::SparseRationalEliminationEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/7.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/7.Crowds, where TypeParam = (anonymous namespace)::SparseRationalEliminationEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/7.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/7.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseRationalEliminationEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/7.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/7.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/7.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/7.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/7.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/7.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseRationalEliminationEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/7 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/8, where TypeParam = (anonymous namespace)::SparseNativeJacobiEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/8.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/8.Die, where TypeParam = (anonymous namespace)::SparseNativeJacobiEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/8.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/8.Crowds, where TypeParam = (anonymous namespace)::SparseNativeJacobiEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/8.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/8.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeJacobiEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/8.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/8.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/8.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/8.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/8.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/8.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeJacobiEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/8 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/9, where TypeParam = (anonymous namespace)::SparseNativeWalkerChaeEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/9.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/9.Die, where TypeParam = (anonymous namespace)::SparseNativeWalkerChaeEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/9.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/9.Crowds, where TypeParam = (anonymous namespace)::SparseNativeWalkerChaeEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/9.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/9.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeWalkerChaeEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/9.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/9.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/9.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/9.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/9.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/9.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeWalkerChaeEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/9 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/10, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/10.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/10.Die, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/10.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/10.Crowds, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/10.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/10.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/10.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/10.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/10.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/10.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/10.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/10.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/10 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/11, where TypeParam = (anonymous namespace)::SparseNativePowerEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/11.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/11.Die, where TypeParam = (anonymous namespace)::SparseNativePowerEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/11.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/11.Crowds, where TypeParam = (anonymous namespace)::SparseNativePowerEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/11.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/11.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativePowerEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/11.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/11.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/11.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/11.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/11.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/11.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativePowerEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/11 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/12, where TypeParam = (anonymous namespace)::SparseNativeSoundValueIterationEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/12.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/12.Die, where TypeParam = (anonymous namespace)::SparseNativeSoundValueIterationEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/12.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/12.Crowds, where TypeParam = (anonymous namespace)::SparseNativeSoundValueIterationEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/12.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/12.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeSoundValueIterationEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/12.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/12.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/12.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/12.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/12.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/12.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeSoundValueIterationEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/12 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/13, where TypeParam = (anonymous namespace)::SparseNativeOptimisticValueIterationEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/13.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/13.Die, where TypeParam = (anonymous namespace)::SparseNativeOptimisticValueIterationEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/13.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/13.Crowds, where TypeParam = (anonymous namespace)::SparseNativeOptimisticValueIterationEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/13.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/13.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeOptimisticValueIterationEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/13.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/13.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/13.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/13.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/13.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/13.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeOptimisticValueIterationEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/13 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/14, where TypeParam = (anonymous namespace)::SparseNativeIntervalIterationEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/14.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/14.Die, where TypeParam = (anonymous namespace)::SparseNativeIntervalIterationEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/14.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/14.Crowds, where TypeParam = (anonymous namespace)::SparseNativeIntervalIterationEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/14.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/14.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeIntervalIterationEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/14.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/14.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/14.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/14.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/14.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/14.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeIntervalIterationEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/14 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/15, where TypeParam = (anonymous namespace)::SparseNativeRationalSearchEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/15.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/15.Die, where TypeParam = (anonymous namespace)::SparseNativeRationalSearchEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/15.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/15.Crowds, where TypeParam = (anonymous namespace)::SparseNativeRationalSearchEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/15.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/15.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeRationalSearchEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/15.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/15.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/15.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/15.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/15.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/15.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeRationalSearchEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/15 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/16, where TypeParam = (anonymous namespace)::SparseTopologicalEigenLUEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/16.Die
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/16.Die, where TypeParam = (anonymous namespace)::SparseTopologicalEigenLUEnvironment (1 ms)
[ RUN ] DtmcPrctlModelCheckerTest/16.Crowds
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/16.Crowds, where TypeParam = (anonymous namespace)::SparseTopologicalEigenLUEnvironment (5 ms)
[ RUN ] DtmcPrctlModelCheckerTest/16.SynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/16.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseTopologicalEigenLUEnvironment (3 ms)
[ RUN ] DtmcPrctlModelCheckerTest/16.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/16.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/16.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/16.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/16.HOAProbabilitiesDie
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest/16.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseTopologicalEigenLUEnvironment (1 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/16 (12 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/17, where TypeParam = (anonymous namespace)::HybridSylvanGmmxxGmresEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/17.Die
[ OK ] DtmcPrctlModelCheckerTest/17.Die (131 ms)
[ RUN ] DtmcPrctlModelCheckerTest/17.Crowds
[ OK ] DtmcPrctlModelCheckerTest/17.Crowds (2972 ms)
[ RUN ] DtmcPrctlModelCheckerTest/17.SynchronousLeader
[ OK ] DtmcPrctlModelCheckerTest/17.SynchronousLeader (1142 ms)
[ RUN ] DtmcPrctlModelCheckerTest/17.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/17.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/17.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/17.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/17.HOAProbabilitiesDie
[ OK ] DtmcPrctlModelCheckerTest/17.HOAProbabilitiesDie (81 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/17 (4328 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/18, where TypeParam = (anonymous namespace)::HybridCuddNativeJacobiEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/18.Die
[ OK ] DtmcPrctlModelCheckerTest/18.Die (9 ms)
[ RUN ] DtmcPrctlModelCheckerTest/18.Crowds
[ OK ] DtmcPrctlModelCheckerTest/18.Crowds (63 ms)
[ RUN ] DtmcPrctlModelCheckerTest/18.SynchronousLeader
[ OK ] DtmcPrctlModelCheckerTest/18.SynchronousLeader (19 ms)
[ RUN ] DtmcPrctlModelCheckerTest/18.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/18.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/18.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/18.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/18.HOAProbabilitiesDie
[ OK ] DtmcPrctlModelCheckerTest/18.HOAProbabilitiesDie (2 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/18 (95 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/19, where TypeParam = (anonymous namespace)::HybridCuddNativeSoundValueIterationEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/19.Die
[ OK ] DtmcPrctlModelCheckerTest/19.Die (2 ms)
[ RUN ] DtmcPrctlModelCheckerTest/19.Crowds
[ OK ] DtmcPrctlModelCheckerTest/19.Crowds (51 ms)
[ RUN ] DtmcPrctlModelCheckerTest/19.SynchronousLeader
[ OK ] DtmcPrctlModelCheckerTest/19.SynchronousLeader (16 ms)
[ RUN ] DtmcPrctlModelCheckerTest/19.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/19.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/19.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/19.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/19.HOAProbabilitiesDie
[ OK ] DtmcPrctlModelCheckerTest/19.HOAProbabilitiesDie (2 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/19 (73 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/20, where TypeParam = (anonymous namespace)::HybridSylvanNativeRationalSearchEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/20.Die
[ OK ] DtmcPrctlModelCheckerTest/20.Die (111 ms)
[ RUN ] DtmcPrctlModelCheckerTest/20.Crowds
[ OK ] DtmcPrctlModelCheckerTest/20.Crowds (7097 ms)
[ RUN ] DtmcPrctlModelCheckerTest/20.SynchronousLeader
[ OK ] DtmcPrctlModelCheckerTest/20.SynchronousLeader (919 ms)
[ RUN ] DtmcPrctlModelCheckerTest/20.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/20.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/20.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/20.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/20.HOAProbabilitiesDie
[ OK ] DtmcPrctlModelCheckerTest/20.HOAProbabilitiesDie (71 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/20 (8200 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/21, where TypeParam = (anonymous namespace)::DdSylvanNativePowerEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/21.Die
[ OK ] DtmcPrctlModelCheckerTest/21.Die (244 ms)
[ RUN ] DtmcPrctlModelCheckerTest/21.Crowds
[ OK ] DtmcPrctlModelCheckerTest/21.Crowds (4970 ms)
[ RUN ] DtmcPrctlModelCheckerTest/21.SynchronousLeader
[ OK ] DtmcPrctlModelCheckerTest/21.SynchronousLeader (1154 ms)
[ RUN ] DtmcPrctlModelCheckerTest/21.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/21.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/21.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/21.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/21.HOAProbabilitiesDie
[ OK ] DtmcPrctlModelCheckerTest/21.HOAProbabilitiesDie (104 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/21 (6474 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/22, where TypeParam = (anonymous namespace)::JaniDdSylvanNativePowerEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/22.Die
[ OK ] DtmcPrctlModelCheckerTest/22.Die (300 ms)
[ RUN ] DtmcPrctlModelCheckerTest/22.Crowds
[ OK ] DtmcPrctlModelCheckerTest/22.Crowds (6561 ms)
[ RUN ] DtmcPrctlModelCheckerTest/22.SynchronousLeader
[ OK ] DtmcPrctlModelCheckerTest/22.SynchronousLeader (1439 ms)
[ RUN ] DtmcPrctlModelCheckerTest/22.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/22.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/22.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/22.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/22.HOAProbabilitiesDie
[ OK ] DtmcPrctlModelCheckerTest/22.HOAProbabilitiesDie (70 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/22 (8372 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/23, where TypeParam = (anonymous namespace)::DdCuddNativeJacobiEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/23.Die
[ OK ] DtmcPrctlModelCheckerTest/23.Die (4 ms)
[ RUN ] DtmcPrctlModelCheckerTest/23.Crowds
[ OK ] DtmcPrctlModelCheckerTest/23.Crowds (974 ms)
[ RUN ] DtmcPrctlModelCheckerTest/23.SynchronousLeader
[ OK ] DtmcPrctlModelCheckerTest/23.SynchronousLeader (18 ms)
[ RUN ] DtmcPrctlModelCheckerTest/23.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/23.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/23.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/23.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/23.HOAProbabilitiesDie
[ OK ] DtmcPrctlModelCheckerTest/23.HOAProbabilitiesDie (2 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/23 (999 ms total)

[----------] 6 tests from DtmcPrctlModelCheckerTest/24, where TypeParam = (anonymous namespace)::DdSylvanRationalSearchEnvironment
[ RUN ] DtmcPrctlModelCheckerTest/24.Die
[ OK ] DtmcPrctlModelCheckerTest/24.Die (191 ms)
[ RUN ] DtmcPrctlModelCheckerTest/24.Crowds
[ OK ] DtmcPrctlModelCheckerTest/24.Crowds (31298 ms)
[ RUN ] DtmcPrctlModelCheckerTest/24.SynchronousLeader
[ OK ] DtmcPrctlModelCheckerTest/24.SynchronousLeader (974 ms)
[ RUN ] DtmcPrctlModelCheckerTest/24.LtlProbabilitiesDie
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:743: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/24.LtlProbabilitiesDie (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/24.LtlProbabilitiesSynchronousLeader
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/dtmc/DtmcPrctlModelCheckerTest.cpp:785: Skipped

[ SKIPPED ] DtmcPrctlModelCheckerTest/24.LtlProbabilitiesSynchronousLeader (0 ms)
[ RUN ] DtmcPrctlModelCheckerTest/24.HOAProbabilitiesDie
[ OK ] DtmcPrctlModelCheckerTest/24.HOAProbabilitiesDie (74 ms)
[----------] 6 tests from DtmcPrctlModelCheckerTest/24 (32539 ms total)

[----------] 1 test from DtmcPrctlModelCheckerTest
[ RUN ] DtmcPrctlModelCheckerTest.AllUntilProbabilities
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] DtmcPrctlModelCheckerTest.AllUntilProbabilities (1 ms)
[----------] 1 test from DtmcPrctlModelCheckerTest (1 ms total)

[----------] 1 test from ConditionalDtmcPrctlModelCheckerTest/0, where TypeParam = (anonymous namespace)::GmmxxDoubleGmresEnvironment
[ RUN ] ConditionalDtmcPrctlModelCheckerTest/0.Conditional
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ConditionalDtmcPrctlModelCheckerTest/0.Conditional, where TypeParam = (anonymous namespace)::GmmxxDoubleGmresEnvironment (0 ms)
[----------] 1 test from ConditionalDtmcPrctlModelCheckerTest/0 (0 ms total)

[----------] 1 test from ConditionalDtmcPrctlModelCheckerTest/1, where TypeParam = (anonymous namespace)::EigenDoubleDGmresEnvironment
[ RUN ] ConditionalDtmcPrctlModelCheckerTest/1.Conditional
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ConditionalDtmcPrctlModelCheckerTest/1.Conditional, where TypeParam = (anonymous namespace)::EigenDoubleDGmresEnvironment (0 ms)
[----------] 1 test from ConditionalDtmcPrctlModelCheckerTest/1 (0 ms total)

[----------] 1 test from ConditionalDtmcPrctlModelCheckerTest/2, where TypeParam = (anonymous namespace)::EigenRationalLUEnvironment
[ RUN ] ConditionalDtmcPrctlModelCheckerTest/2.Conditional
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ConditionalDtmcPrctlModelCheckerTest/2.Conditional, where TypeParam = (anonymous namespace)::EigenRationalLUEnvironment (0 ms)
[----------] 1 test from ConditionalDtmcPrctlModelCheckerTest/2 (0 ms total)

[----------] 1 test from ConditionalDtmcPrctlModelCheckerTest/3, where TypeParam = (anonymous namespace)::NativeSorEnvironment
[ RUN ] ConditionalDtmcPrctlModelCheckerTest/3.Conditional
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ConditionalDtmcPrctlModelCheckerTest/3.Conditional, where TypeParam = (anonymous namespace)::NativeSorEnvironment (0 ms)
[----------] 1 test from ConditionalDtmcPrctlModelCheckerTest/3 (0 ms total)

[----------] 1 test from ConditionalDtmcPrctlModelCheckerTest/4, where TypeParam = (anonymous namespace)::NativePowerEnvironment
[ RUN ] ConditionalDtmcPrctlModelCheckerTest/4.Conditional
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ConditionalDtmcPrctlModelCheckerTest/4.Conditional, where TypeParam = (anonymous namespace)::NativePowerEnvironment (0 ms)
[----------] 1 test from ConditionalDtmcPrctlModelCheckerTest/4 (0 ms total)

[----------] 1 test from ConditionalDtmcPrctlModelCheckerTest/5, where TypeParam = (anonymous namespace)::NativeWalkerChaeEnvironment
[ RUN ] ConditionalDtmcPrctlModelCheckerTest/5.Conditional
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] ConditionalDtmcPrctlModelCheckerTest/5.Conditional, where TypeParam = (anonymous namespace)::NativeWalkerChaeEnvironment (0 ms)
[----------] 1 test from ConditionalDtmcPrctlModelCheckerTest/5 (0 ms total)

[----------] Global test environment tear-down
[==========] 178 tests from 42 test suites ran. (61405 ms total)
[ PASSED ] 53 tests.
[ SKIPPED ] 50 tests, listed below:
[ SKIPPED ] DtmcPrctlModelCheckerTest/0.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/0.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/1.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/1.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/2.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/2.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/3.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/3.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/4.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/4.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/5.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/5.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/6.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/6.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/7.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/7.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/8.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/8.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/9.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/9.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/10.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/10.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/11.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/11.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/12.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/12.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/13.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/13.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/14.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/14.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/15.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/15.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/16.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/16.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/17.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/17.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/18.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/18.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/19.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/19.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/20.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/20.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/21.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/21.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/22.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/22.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/23.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/23.LtlProbabilitiesSynchronousLeader
[ SKIPPED ] DtmcPrctlModelCheckerTest/24.LtlProbabilitiesDie
[ SKIPPED ] DtmcPrctlModelCheckerTest/24.LtlProbabilitiesSynchronousLeader
[ FAILED ] 75 tests, listed below:
[ FAILED ] DtmcPrctlModelCheckerTest/0.Die, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/0.Crowds, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/0.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/0.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseGmmxxGmresIluEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/1.Die, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/1.Crowds, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/1.SynchronousLeader, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/1.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::JaniSparseGmmxxGmresIluEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/2.Die, where TypeParam = (anonymous namespace)::SparseGmmxxGmresDiagEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/2.Crowds, where TypeParam = (anonymous namespace)::SparseGmmxxGmresDiagEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/2.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseGmmxxGmresDiagEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/2.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseGmmxxGmresDiagEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/3.Die, where TypeParam = (anonymous namespace)::SparseGmmxxBicgstabIluEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/3.Crowds, where TypeParam = (anonymous namespace)::SparseGmmxxBicgstabIluEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/3.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseGmmxxBicgstabIluEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/3.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseGmmxxBicgstabIluEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/4.Die, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/4.Crowds, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/4.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/4.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseEigenDGmresEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/5.Die, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/5.Crowds, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/5.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/5.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseEigenDoubleLUEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/6.Die, where TypeParam = (anonymous namespace)::SparseEigenRationalLUEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/6.Crowds, where TypeParam = (anonymous namespace)::SparseEigenRationalLUEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/6.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseEigenRationalLUEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/6.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseEigenRationalLUEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/7.Die, where TypeParam = (anonymous namespace)::SparseRationalEliminationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/7.Crowds, where TypeParam = (anonymous namespace)::SparseRationalEliminationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/7.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseRationalEliminationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/7.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseRationalEliminationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/8.Die, where TypeParam = (anonymous namespace)::SparseNativeJacobiEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/8.Crowds, where TypeParam = (anonymous namespace)::SparseNativeJacobiEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/8.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeJacobiEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/8.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeJacobiEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/9.Die, where TypeParam = (anonymous namespace)::SparseNativeWalkerChaeEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/9.Crowds, where TypeParam = (anonymous namespace)::SparseNativeWalkerChaeEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/9.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeWalkerChaeEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/9.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeWalkerChaeEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/10.Die, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/10.Crowds, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/10.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/10.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeSorEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/11.Die, where TypeParam = (anonymous namespace)::SparseNativePowerEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/11.Crowds, where TypeParam = (anonymous namespace)::SparseNativePowerEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/11.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativePowerEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/11.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativePowerEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/12.Die, where TypeParam = (anonymous namespace)::SparseNativeSoundValueIterationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/12.Crowds, where TypeParam = (anonymous namespace)::SparseNativeSoundValueIterationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/12.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeSoundValueIterationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/12.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeSoundValueIterationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/13.Die, where TypeParam = (anonymous namespace)::SparseNativeOptimisticValueIterationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/13.Crowds, where TypeParam = (anonymous namespace)::SparseNativeOptimisticValueIterationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/13.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeOptimisticValueIterationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/13.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeOptimisticValueIterationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/14.Die, where TypeParam = (anonymous namespace)::SparseNativeIntervalIterationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/14.Crowds, where TypeParam = (anonymous namespace)::SparseNativeIntervalIterationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/14.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeIntervalIterationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/14.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeIntervalIterationEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/15.Die, where TypeParam = (anonymous namespace)::SparseNativeRationalSearchEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/15.Crowds, where TypeParam = (anonymous namespace)::SparseNativeRationalSearchEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/15.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseNativeRationalSearchEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/15.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseNativeRationalSearchEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/16.Die, where TypeParam = (anonymous namespace)::SparseTopologicalEigenLUEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/16.Crowds, where TypeParam = (anonymous namespace)::SparseTopologicalEigenLUEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/16.SynchronousLeader, where TypeParam = (anonymous namespace)::SparseTopologicalEigenLUEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest/16.HOAProbabilitiesDie, where TypeParam = (anonymous namespace)::SparseTopologicalEigenLUEnvironment
[ FAILED ] DtmcPrctlModelCheckerTest.AllUntilProbabilities
[ FAILED ] ConditionalDtmcPrctlModelCheckerTest/0.Conditional, where TypeParam = (anonymous namespace)::GmmxxDoubleGmresEnvironment
[ FAILED ] ConditionalDtmcPrctlModelCheckerTest/1.Conditional, where TypeParam = (anonymous namespace)::EigenDoubleDGmresEnvironment
[ FAILED ] ConditionalDtmcPrctlModelCheckerTest/2.Conditional, where TypeParam = (anonymous namespace)::EigenRationalLUEnvironment
[ FAILED ] ConditionalDtmcPrctlModelCheckerTest/3.Conditional, where TypeParam = (anonymous namespace)::NativeSorEnvironment
[ FAILED ] ConditionalDtmcPrctlModelCheckerTest/4.Conditional, where TypeParam = (anonymous namespace)::NativePowerEnvironment
[ FAILED ] ConditionalDtmcPrctlModelCheckerTest/5.Conditional, where TypeParam = (anonymous namespace)::NativeWalkerChaeEnvironment

75 FAILED TESTS

  Start 18: run-test-modelchecker-prctl-mdp

18/36 Test #18: run-test-modelchecker-prctl-mdp ........***Failed 79.32 sec
[==========] Running 270 tests from 36 test suites.
[----------] Global test environment set-up.
[----------] 6 tests from SchedulerGenerationMdpPrctlModelCheckerTest/0, where TypeParam = (anonymous namespace)::DoubleViEnvironment
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/0.reachability
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/0.reachability, where TypeParam = (anonymous namespace)::DoubleViEnvironment (4 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/0.total_reward
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/0.total_reward, where TypeParam = (anonymous namespace)::DoubleViEnvironment (2 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/0.lra
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/0.lra, where TypeParam = (anonymous namespace)::DoubleViEnvironment (3 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/0.ltl
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/SchedulerGenerationMdpPrctlModelCheckerTest.cpp:345: Skipped

[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/0.ltl (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/0.ltlNondetChoice
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/SchedulerGenerationMdpPrctlModelCheckerTest.cpp:390: Skipped

[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/0.ltlNondetChoice (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/0.ltlUnsat
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/SchedulerGenerationMdpPrctlModelCheckerTest.cpp:460: Skipped

[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/0.ltlUnsat (0 ms)
[----------] 6 tests from SchedulerGenerationMdpPrctlModelCheckerTest/0 (10 ms total)

[----------] 6 tests from SchedulerGenerationMdpPrctlModelCheckerTest/1, where TypeParam = (anonymous namespace)::DoubleSoundViEnvironment
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/1.reachability
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/1.reachability, where TypeParam = (anonymous namespace)::DoubleSoundViEnvironment (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/1.total_reward
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/1.total_reward, where TypeParam = (anonymous namespace)::DoubleSoundViEnvironment (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/1.lra
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/1.lra, where TypeParam = (anonymous namespace)::DoubleSoundViEnvironment (2 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/1.ltl
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/SchedulerGenerationMdpPrctlModelCheckerTest.cpp:345: Skipped

[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/1.ltl (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/1.ltlNondetChoice
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/SchedulerGenerationMdpPrctlModelCheckerTest.cpp:390: Skipped

[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/1.ltlNondetChoice (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/1.ltlUnsat
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/SchedulerGenerationMdpPrctlModelCheckerTest.cpp:460: Skipped

[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/1.ltlUnsat (0 ms)
[----------] 6 tests from SchedulerGenerationMdpPrctlModelCheckerTest/1 (4 ms total)

[----------] 6 tests from SchedulerGenerationMdpPrctlModelCheckerTest/2, where TypeParam = (anonymous namespace)::DoublePIEnvironment
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/2.reachability
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/2.reachability, where TypeParam = (anonymous namespace)::DoublePIEnvironment (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/2.total_reward
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/2.total_reward, where TypeParam = (anonymous namespace)::DoublePIEnvironment (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/2.lra
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/2.lra, where TypeParam = (anonymous namespace)::DoublePIEnvironment (2 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/2.ltl
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/SchedulerGenerationMdpPrctlModelCheckerTest.cpp:345: Skipped

[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/2.ltl (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/2.ltlNondetChoice
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/SchedulerGenerationMdpPrctlModelCheckerTest.cpp:390: Skipped

[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/2.ltlNondetChoice (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/2.ltlUnsat
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/SchedulerGenerationMdpPrctlModelCheckerTest.cpp:460: Skipped

[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/2.ltlUnsat (0 ms)
[----------] 6 tests from SchedulerGenerationMdpPrctlModelCheckerTest/2 (4 ms total)

[----------] 6 tests from SchedulerGenerationMdpPrctlModelCheckerTest/3, where TypeParam = (anonymous namespace)::RationalPIEnvironment
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/3.reachability
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/3.reachability, where TypeParam = (anonymous namespace)::RationalPIEnvironment (1 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/3.total_reward
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/3.total_reward, where TypeParam = (anonymous namespace)::RationalPIEnvironment (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/3.lra
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/3.lra, where TypeParam = (anonymous namespace)::RationalPIEnvironment (2 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/3.ltl
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/SchedulerGenerationMdpPrctlModelCheckerTest.cpp:345: Skipped

[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/3.ltl (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/3.ltlNondetChoice
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/SchedulerGenerationMdpPrctlModelCheckerTest.cpp:390: Skipped

[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/3.ltlNondetChoice (0 ms)
[ RUN ] SchedulerGenerationMdpPrctlModelCheckerTest/3.ltlUnsat
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/SchedulerGenerationMdpPrctlModelCheckerTest.cpp:460: Skipped

[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/3.ltlUnsat (0 ms)
[----------] 6 tests from SchedulerGenerationMdpPrctlModelCheckerTest/3 (4 ms total)

[----------] 7 tests from RobustMDPModelCheckingTest
[ RUN ] RobustMDPModelCheckingTest.Tiny01maxmin
[ OK ] RobustMDPModelCheckingTest.Tiny01maxmin (0 ms)
[ RUN ] RobustMDPModelCheckingTest.Tiny03maxmin
[ OK ] RobustMDPModelCheckingTest.Tiny03maxmin (0 ms)
[ RUN ] RobustMDPModelCheckingTest.BoundedTiny03maxmin
[ OK ] RobustMDPModelCheckingTest.BoundedTiny03maxmin (0 ms)
[ RUN ] RobustMDPModelCheckingTest.Tiny04maxmin
[ OK ] RobustMDPModelCheckingTest.Tiny04maxmin (0 ms)
[ RUN ] RobustMDPModelCheckingTest.Tiny05maxmin
[ OK ] RobustMDPModelCheckingTest.Tiny05maxmin (0 ms)
[ RUN ] RobustMDPModelCheckingTest.Tiny04maxmin_rewards
[ OK ] RobustMDPModelCheckingTest.Tiny04maxmin_rewards (0 ms)
[ RUN ] RobustMDPModelCheckingTest.AddUncertaintyCoin22max
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] RobustMDPModelCheckingTest.AddUncertaintyCoin22max (1 ms)
[----------] 7 tests from RobustMDPModelCheckingTest (4 ms total)

[----------] 4 tests from QuantileQueryTest/0, where TypeParam = (anonymous namespace)::UnsoundEnvironment
[ RUN ] QuantileQueryTest/0.simple_Dtmc
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] QuantileQueryTest/0.simple_Dtmc, where TypeParam = (anonymous namespace)::UnsoundEnvironment (1 ms)
[ RUN ] QuantileQueryTest/0.simple_Mdp
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] QuantileQueryTest/0.simple_Mdp, where TypeParam = (anonymous namespace)::UnsoundEnvironment (1 ms)
[ RUN ] QuantileQueryTest/0.firewire
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] QuantileQueryTest/0.firewire, where TypeParam = (anonymous namespace)::UnsoundEnvironment (2 ms)
[ RUN ] QuantileQueryTest/0.resources
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] QuantileQueryTest/0.resources, where TypeParam = (anonymous namespace)::UnsoundEnvironment (3 ms)
[----------] 4 tests from QuantileQueryTest/0 (8 ms total)

[----------] 4 tests from QuantileQueryTest/1, where TypeParam = (anonymous namespace)::SoundEnvironment
[ RUN ] QuantileQueryTest/1.simple_Dtmc
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] QuantileQueryTest/1.simple_Dtmc, where TypeParam = (anonymous namespace)::SoundEnvironment (1 ms)
[ RUN ] QuantileQueryTest/1.simple_Mdp
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] QuantileQueryTest/1.simple_Mdp, where TypeParam = (anonymous namespace)::SoundEnvironment (1 ms)
[ RUN ] QuantileQueryTest/1.firewire
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] QuantileQueryTest/1.firewire, where TypeParam = (anonymous namespace)::SoundEnvironment (2 ms)
[ RUN ] QuantileQueryTest/1.resources
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] QuantileQueryTest/1.resources, where TypeParam = (anonymous namespace)::SoundEnvironment (3 ms)
[----------] 4 tests from QuantileQueryTest/1 (8 ms total)

[----------] 4 tests from QuantileQueryTest/2, where TypeParam = (anonymous namespace)::ExactEnvironment
[ RUN ] QuantileQueryTest/2.simple_Dtmc
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] QuantileQueryTest/2.simple_Dtmc, where TypeParam = (anonymous namespace)::ExactEnvironment (1 ms)
[ RUN ] QuantileQueryTest/2.simple_Mdp
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] QuantileQueryTest/2.simple_Mdp, where TypeParam = (anonymous namespace)::ExactEnvironment (1 ms)
[ RUN ] QuantileQueryTest/2.firewire
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] QuantileQueryTest/2.firewire, where TypeParam = (anonymous namespace)::ExactEnvironment (2 ms)
[ RUN ] QuantileQueryTest/2.resources
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] QuantileQueryTest/2.resources, where TypeParam = (anonymous namespace)::ExactEnvironment (3 ms)
[----------] 4 tests from QuantileQueryTest/2 (8 ms total)

[----------] 9 tests from MdpPrctlModelCheckerTest/0, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment
[ RUN ] MdpPrctlModelCheckerTest/0.Dice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/0.Dice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment (2 ms)
[ RUN ] MdpPrctlModelCheckerTest/0.AsynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/0.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment (5 ms)
[ RUN ] MdpPrctlModelCheckerTest/0.consensus
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/0.consensus, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment (2 ms)
[ RUN ] MdpPrctlModelCheckerTest/0.TinyRewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/0.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/0.Team
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/0.Team, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment (13 ms)
[ RUN ] MdpPrctlModelCheckerTest/0.LtlProbabilitiesCoin
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:737: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/0.LtlProbabilitiesCoin (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/0.LtlDice
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:781: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/0.LtlDice (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/0.LtlCoinFlips
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:835: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/0.LtlCoinFlips (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/0.HOADice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/0.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment (2 ms)
[----------] 9 tests from MdpPrctlModelCheckerTest/0 (27 ms total)

[----------] 9 tests from MdpPrctlModelCheckerTest/1, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment
[ RUN ] MdpPrctlModelCheckerTest/1.Dice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/1.Dice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment (2 ms)
[ RUN ] MdpPrctlModelCheckerTest/1.AsynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/1.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment (5 ms)
[ RUN ] MdpPrctlModelCheckerTest/1.consensus
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/1.consensus, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment (2 ms)
[ RUN ] MdpPrctlModelCheckerTest/1.TinyRewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/1.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/1.Team
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/1.Team, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment (13 ms)
[ RUN ] MdpPrctlModelCheckerTest/1.LtlProbabilitiesCoin
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:737: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/1.LtlProbabilitiesCoin (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/1.LtlDice
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:781: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/1.LtlDice (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/1.LtlCoinFlips
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:835: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/1.LtlCoinFlips (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/1.HOADice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/1.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment (2 ms)
[----------] 9 tests from MdpPrctlModelCheckerTest/1 (26 ms total)

[----------] 9 tests from MdpPrctlModelCheckerTest/2, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment
[ RUN ] MdpPrctlModelCheckerTest/2.Dice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/2.Dice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment (2 ms)
[ RUN ] MdpPrctlModelCheckerTest/2.AsynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/2.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment (5 ms)
[ RUN ] MdpPrctlModelCheckerTest/2.consensus
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/2.consensus, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment (2 ms)
[ RUN ] MdpPrctlModelCheckerTest/2.TinyRewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/2.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/2.Team
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/2.Team, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment (13 ms)
[ RUN ] MdpPrctlModelCheckerTest/2.LtlProbabilitiesCoin
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:737: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/2.LtlProbabilitiesCoin (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/2.LtlDice
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:781: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/2.LtlDice (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/2.LtlCoinFlips
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:835: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/2.LtlCoinFlips (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/2.HOADice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/2.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment (2 ms)
[----------] 9 tests from MdpPrctlModelCheckerTest/2 (26 ms total)

[----------] 9 tests from MdpPrctlModelCheckerTest/3, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment
[ RUN ] MdpPrctlModelCheckerTest/3.Dice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/3.Dice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment (2 ms)
[ RUN ] MdpPrctlModelCheckerTest/3.AsynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/3.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment (5 ms)
[ RUN ] MdpPrctlModelCheckerTest/3.consensus
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/3.consensus, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment (2 ms)
[ RUN ] MdpPrctlModelCheckerTest/3.TinyRewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/3.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/3.Team
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/3.Team, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment (13 ms)
[ RUN ] MdpPrctlModelCheckerTest/3.LtlProbabilitiesCoin
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:737: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/3.LtlProbabilitiesCoin (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/3.LtlDice
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:781: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/3.LtlDice (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/3.LtlCoinFlips
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:835: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/3.LtlCoinFlips (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/3.HOADice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/3.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment (2 ms)
[----------] 9 tests from MdpPrctlModelCheckerTest/3 (26 ms total)

[----------] 9 tests from MdpPrctlModelCheckerTest/4, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment
[ RUN ] MdpPrctlModelCheckerTest/4.Dice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/4.Dice, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment (2 ms)
[ RUN ] MdpPrctlModelCheckerTest/4.AsynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/4.AsynchronousLeader, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment (6 ms)
[ RUN ] MdpPrctlModelCheckerTest/4.consensus
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/4.consensus, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment (2 ms)
[ RUN ] MdpPrctlModelCheckerTest/4.TinyRewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/4.TinyRewards, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/4.Team
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/4.Team, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment (17 ms)
[ RUN ] MdpPrctlModelCheckerTest/4.LtlProbabilitiesCoin
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:737: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/4.LtlProbabilitiesCoin (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/4.LtlDice
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:781: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/4.LtlDice (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/4.LtlCoinFlips
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:835: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/4.LtlCoinFlips (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/4.HOADice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/4.HOADice, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment (2 ms)
[----------] 9 tests from MdpPrctlModelCheckerTest/4 (32 ms total)

[----------] 9 tests from MdpPrctlModelCheckerTest/5, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment
[ RUN ] MdpPrctlModelCheckerTest/5.Dice
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/5.Dice, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment (2 ms)
[ RUN ] MdpPrctlModelCheckerTest/5.AsynchronousLeader
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/5.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment (5 ms)
[ RUN ] MdpPrctlModelCheckerTest/5.consensus
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/5.consensus, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment (2 ms)
[ RUN ] MdpPrctlModelCheckerTest/5.TinyRewards
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/5.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/5.Team
ERROR (Z3SmtSolver.cpp:120): Storm is compiled without Z3 support.
unknown file: Failure
C++ exception with description "NotSupportedException: Storm is compiled without Z3 support." thrown in the test body.
[ FAILED ] MdpPrctlModelCheckerTest/5.Team, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment (13 ms)
[ RUN ] MdpPrctlModelCheckerTest/5.LtlProbabilitiesCoin
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:737: Skipped

[ SKIPPED ] MdpPrctlModelCheckerTest/5.LtlProbabilitiesCoin (0 ms)
[ RUN ] MdpPrctlModelCheckerTest/5.LtlDice
/home/exouser/xSRL/storm/src/test/storm/modelchecker/prctl/mdp/MdpPrctlModelCheckerTest.cpp:781: Skipped

[----------] 2 tests from ExplicitMdpPrctlModelCheckerTest
[ RUN ] ExplicitMdpPrctlModelCheckerTest.Dice
[ OK ] ExplicitMdpPrctlModelCheckerTest.Dice (3 ms)
[ RUN ] ExplicitMdpPrctlModelCheckerTest.AsynchronousLeader
[ OK ] ExplicitMdpPrctlModelCheckerTest.AsynchronousLeader (14 ms)
[----------] 2 tests from ExplicitMdpPrctlModelCheckerTest (18 ms total)

[----------] Global test environment tear-down
[==========] 270 tests from 36 test suites ran. (79292 ms total)
[ PASSED ] 74 tests.
[ SKIPPED ] 84 tests, listed below:
[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/0.ltl
[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/0.ltlNondetChoice
[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/0.ltlUnsat
[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/1.ltl
[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/1.ltlNondetChoice
[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/1.ltlUnsat
[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/2.ltl
[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/2.ltlNondetChoice
[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/2.ltlUnsat
[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/3.ltl
[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/3.ltlNondetChoice
[ SKIPPED ] SchedulerGenerationMdpPrctlModelCheckerTest/3.ltlUnsat
[ SKIPPED ] MdpPrctlModelCheckerTest/0.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/0.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/0.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/1.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/1.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/1.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/2.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/2.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/2.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/3.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/3.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/3.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/4.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/4.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/4.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/5.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/5.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/5.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/6.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/6.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/6.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/7.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/7.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/7.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/8.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/8.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/8.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/9.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/9.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/9.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/10.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/10.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/10.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/11.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/11.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/11.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/12.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/12.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/12.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/13.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/13.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/13.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/14.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/14.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/14.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/15.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/15.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/15.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/16.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/16.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/16.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/17.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/17.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/17.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/18.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/18.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/18.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/19.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/19.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/19.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/20.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/20.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/20.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/21.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/21.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/21.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/22.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/22.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/22.LtlCoinFlips
[ SKIPPED ] MdpPrctlModelCheckerTest/23.LtlProbabilitiesCoin
[ SKIPPED ] MdpPrctlModelCheckerTest/23.LtlDice
[ SKIPPED ] MdpPrctlModelCheckerTest/23.LtlCoinFlips
[ FAILED ] 112 tests, listed below:
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/0.reachability, where TypeParam = (anonymous namespace)::DoubleViEnvironment
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/0.total_reward, where TypeParam = (anonymous namespace)::DoubleViEnvironment
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/0.lra, where TypeParam = (anonymous namespace)::DoubleViEnvironment
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/1.reachability, where TypeParam = (anonymous namespace)::DoubleSoundViEnvironment
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/1.total_reward, where TypeParam = (anonymous namespace)::DoubleSoundViEnvironment
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/1.lra, where TypeParam = (anonymous namespace)::DoubleSoundViEnvironment
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/2.reachability, where TypeParam = (anonymous namespace)::DoublePIEnvironment
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/2.total_reward, where TypeParam = (anonymous namespace)::DoublePIEnvironment
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/2.lra, where TypeParam = (anonymous namespace)::DoublePIEnvironment
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/3.reachability, where TypeParam = (anonymous namespace)::RationalPIEnvironment
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/3.total_reward, where TypeParam = (anonymous namespace)::RationalPIEnvironment
[ FAILED ] SchedulerGenerationMdpPrctlModelCheckerTest/3.lra, where TypeParam = (anonymous namespace)::RationalPIEnvironment
[ FAILED ] RobustMDPModelCheckingTest.AddUncertaintyCoin22max
[ FAILED ] QuantileQueryTest/0.simple_Dtmc, where TypeParam = (anonymous namespace)::UnsoundEnvironment
[ FAILED ] QuantileQueryTest/0.simple_Mdp, where TypeParam = (anonymous namespace)::UnsoundEnvironment
[ FAILED ] QuantileQueryTest/0.firewire, where TypeParam = (anonymous namespace)::UnsoundEnvironment
[ FAILED ] QuantileQueryTest/0.resources, where TypeParam = (anonymous namespace)::UnsoundEnvironment
[ FAILED ] QuantileQueryTest/1.simple_Dtmc, where TypeParam = (anonymous namespace)::SoundEnvironment
[ FAILED ] QuantileQueryTest/1.simple_Mdp, where TypeParam = (anonymous namespace)::SoundEnvironment
[ FAILED ] QuantileQueryTest/1.firewire, where TypeParam = (anonymous namespace)::SoundEnvironment
[ FAILED ] QuantileQueryTest/1.resources, where TypeParam = (anonymous namespace)::SoundEnvironment
[ FAILED ] QuantileQueryTest/2.simple_Dtmc, where TypeParam = (anonymous namespace)::ExactEnvironment
[ FAILED ] QuantileQueryTest/2.simple_Mdp, where TypeParam = (anonymous namespace)::ExactEnvironment
[ FAILED ] QuantileQueryTest/2.firewire, where TypeParam = (anonymous namespace)::ExactEnvironment
[ FAILED ] QuantileQueryTest/2.resources, where TypeParam = (anonymous namespace)::ExactEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/0.Dice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/0.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/0.consensus, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/0.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/0.Team, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/0.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxGaussSeidelMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/1.Dice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/1.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/1.consensus, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/1.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/1.Team, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/1.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationGmmxxRegularMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/2.Dice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/2.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/2.consensus, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/2.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/2.Team, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/2.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeGaussSeidelMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/3.Dice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/3.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/3.consensus, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/3.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/3.Team, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/3.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleValueIterationNativeRegularMultEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/4.Dice, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/4.AsynchronousLeader, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/4.consensus, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/4.TinyRewards, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/4.Team, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/4.HOADice, where TypeParam = (anonymous namespace)::JaniSparseDoubleValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/5.Dice, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/5.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/5.consensus, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/5.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/5.Team, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/5.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleIntervalIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/6.Dice, where TypeParam = (anonymous namespace)::SparseDoubleSoundValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/6.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleSoundValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/6.consensus, where TypeParam = (anonymous namespace)::SparseDoubleSoundValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/6.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleSoundValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/6.Team, where TypeParam = (anonymous namespace)::SparseDoubleSoundValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/6.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleSoundValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/7.Dice, where TypeParam = (anonymous namespace)::SparseDoubleOptimisticValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/7.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleOptimisticValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/7.consensus, where TypeParam = (anonymous namespace)::SparseDoubleOptimisticValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/7.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleOptimisticValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/7.Team, where TypeParam = (anonymous namespace)::SparseDoubleOptimisticValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/7.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleOptimisticValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/8.Dice, where TypeParam = (anonymous namespace)::SparseDoubleTopologicalValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/8.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleTopologicalValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/8.consensus, where TypeParam = (anonymous namespace)::SparseDoubleTopologicalValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/8.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleTopologicalValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/8.Team, where TypeParam = (anonymous namespace)::SparseDoubleTopologicalValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/8.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleTopologicalValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/9.Dice, where TypeParam = (anonymous namespace)::SparseDoubleTopologicalSoundValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/9.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleTopologicalSoundValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/9.consensus, where TypeParam = (anonymous namespace)::SparseDoubleTopologicalSoundValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/9.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleTopologicalSoundValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/9.Team, where TypeParam = (anonymous namespace)::SparseDoubleTopologicalSoundValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/9.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleTopologicalSoundValueIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/10.Dice, where TypeParam = (anonymous namespace)::SparseDoubleLPEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/10.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseDoubleLPEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/10.consensus, where TypeParam = (anonymous namespace)::SparseDoubleLPEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/10.TinyRewards, where TypeParam = (anonymous namespace)::SparseDoubleLPEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/10.Team, where TypeParam = (anonymous namespace)::SparseDoubleLPEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/10.HOADice, where TypeParam = (anonymous namespace)::SparseDoubleLPEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/11.Dice, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/11.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/11.consensus, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/11.TinyRewards, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/11.Team, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/11.HOADice, where TypeParam = (anonymous namespace)::SparseRationalPolicyIterationEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/12.Dice, where TypeParam = (anonymous namespace)::SparseRationalViToPiEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/12.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseRationalViToPiEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/12.consensus, where TypeParam = (anonymous namespace)::SparseRationalViToPiEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/12.TinyRewards, where TypeParam = (anonymous namespace)::SparseRationalViToPiEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/12.Team, where TypeParam = (anonymous namespace)::SparseRationalViToPiEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/12.HOADice, where TypeParam = (anonymous namespace)::SparseRationalViToPiEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/13.Dice, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/13.AsynchronousLeader, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/13.consensus, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/13.TinyRewards, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/13.Team, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment
[ FAILED ] MdpPrctlModelCheckerTest/13.HOADice, where TypeParam = (anonymous namespace)::SparseRationalRationalSearchEnvironment
[ FAILED ] LraMdpPrctlModelCheckerTest/0.cs_nfail, where TypeParam = (anonymous namespace)::SparseValueTypeValueIterationEnvironment
[ FAILED ] LraMdpPrctlModelCheckerTest/1.cs_nfail, where TypeParam = (anonymous namespace)::SparseValueTypeLinearProgrammingEnvironment
[ FAILED ] LraMdpPrctlModelCheckerTest/2.cs_nfail, where TypeParam = (anonymous namespace)::SparseSoundEnvironment

@sjunges sjunges changed the title Build Error with Storm and GLPK Build Error without z3 Feb 19, 2025
@sjunges
Copy link
Contributor

sjunges commented Feb 19, 2025

Ok, so the problem is somehow that we execute tests that are not supported by your compilation.

I really think that you should install z3.

@volkm
Copy link
Contributor

volkm commented Feb 20, 2025

For better debugging the error you encountered, can you tell us what commit you are on? storm --version should tell the details, otherwise git rev-parse HEAD

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants