Skip to content

Commit

Permalink
Merge pull request #26 from TAPAAL-Developers/missing_rdfs_switch
Browse files Browse the repository at this point in the history
Added missing search option
  • Loading branch information
srba authored Feb 14, 2023
2 parents d8c1a62 + dd1b346 commit 0ed479c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ endif()

# Project Definition
set(VERIFYTAPN_NAME "verifytapn")
set(VERIFYTAPN_VERSION 1.3.1)
set(VERIFYTAPN_VERSION 1.3.2)
project(${VERIFYTAPN_NAME} VERSION ${VERIFYTAPN_VERSION} LANGUAGES CXX C)


Expand Down
2 changes: 1 addition & 1 deletion src/Core/VerificationOptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ namespace VerifyTAPN {
return BREADTHFIRST;
if (str == "DFS")
return DEPTHFIRST;
if (str == "RANDOM")
if (str == "RANDOM" || str == "RDFS")
return RANDOM;
if (str == "MAX-COVER")
return COVERMOST;
Expand Down

0 comments on commit 0ed479c

Please sign in to comment.