Skip to content

Commit

Permalink
Integrated feedback by sjunges
Browse files Browse the repository at this point in the history
  • Loading branch information
volkm committed Aug 26, 2024
1 parent 80eaa12 commit 74b8b0d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,12 @@ message(STATUS "Storm - Detected operating system ${OPERATING_SYSTEM}.")
set(SHIPPED_CARL_USE_CLN_NUMBERS ON)
set(SHIPPED_CARL_USE_GINAC ON)

# Warning for Apple Silicon
if(APPLE_SILICON)
message(WARNING "Compiling natively on Apple Silicon is experimental. Please report any issues to [email protected].")
endif()


set(DYNAMIC_EXT ".so")
set(STATIC_EXT ".a")
set(LIB_PREFIX "lib")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "storm/adapters/RationalNumberAdapter.h" // Must come first

#include "ExplicitQualitativeCheckResult.h"
#include "storm/modelchecker/results/ExplicitQualitativeCheckResult.h"

#include "storm/adapters/JsonAdapter.h"
#include "storm/exceptions/InvalidOperationException.h"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "storm/adapters/RationalNumberAdapter.h" // Must come first

#include "ExplicitQuantitativeCheckResult.h"
#include "storm/modelchecker/results/ExplicitQuantitativeCheckResult.h"

#include "storm/adapters/JsonAdapter.h"
#include "storm/adapters/RationalFunctionAdapter.h"
Expand Down

1 comment on commit 74b8b0d

@sjunges
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:D

Please sign in to comment.