AnderGray / IntervalUnionArithmetic.jl

An implementation of interval union arithmetic in Julia
MIT License
11 stars 4 forks source link

fix for #23 #24

Closed abraunst closed 2 years ago

abraunst commented 2 years ago

The problem is that the < relation for intervals doesn't give a complete order, so cannot be used for sort.

codecov-commenter commented 2 years ago

Codecov Report

Merging #24 (4c75308) into main (8bd6eb6) will increase coverage by 3.55%. The diff coverage is 73.33%.

Impacted file tree graph

@@            Coverage Diff             @@
##             main      #24      +/-   ##
==========================================
+ Coverage   50.93%   54.48%   +3.55%     
==========================================
  Files           4        4              
  Lines         161      156       -5     
==========================================
+ Hits           82       85       +3     
+ Misses         79       71       -8     
Impacted Files Coverage Δ
src/utilities.jl 12.50% <0.00%> (ø)
src/interval_unions.jl 53.44% <50.00%> (ø)
src/set_operations.jl 65.67% <100.00%> (+8.72%) :arrow_up:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 8bd6eb6...4c75308. Read the comment docs.

abraunst commented 2 years ago

Fixes issue #23 (don't know why GH didn't add the reference)

AnderGray commented 2 years ago

Well spotted!