Skip to content

Commit

Permalink
Merge pull request #76 from jakobnissen/fixbreak
Browse files Browse the repository at this point in the history
Disable breaking change: check for ambiguity
  • Loading branch information
jakobnissen authored Mar 26, 2021
2 parents 14e055c + b131750 commit 7f855e2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"

[compat]
ScanByte = "0.3"
julia = "1.5"
TranscodingStreams = "0.9"
julia = "1.5"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
2 changes: 1 addition & 1 deletion src/dfa.jl
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function nfa2dfa(nfa::NFA, unambiguous::Bool=true)
end
# Each key represents a set of NFANodes that collapses to one DFANode.
# If any set contain conflicting possible actions, raise an error.
if unambiguous
if false
for nfaset in keys(newnodes)
validate_nfanodes(nfaset)
end
Expand Down
1 change: 0 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ include("test15.jl")
include("test16.jl")
include("test17.jl")
include("test18.jl")
include("test19.jl")
include("simd.jl")

module TestFASTA
Expand Down

0 comments on commit 7f855e2

Please sign in to comment.