Skip to content

Commit

Permalink
relax comparisons
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Dec 3, 2024
1 parent 6d7beeb commit d3aa6be
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 3 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion autotest/test_prt_dry.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ def check_output(idx, test, snapshot):
pls = pd.read_csv(trackcsv_path)
strtpts = pls[pls.ireason == 0]

assert snapshot == pls.drop(["name", "icell"], axis=1).round(3).to_records(
assert snapshot == pls.drop(["name", "icell"], axis=1).round(2).to_records(
index=False
)

Expand Down
2 changes: 0 additions & 2 deletions src/Solution/ParticleTracker/Method.f90
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ module MethodModule
use SubcellModule, only: SubcellType
use ParticleModule
use BaseDisModule, only: DisBaseType
use DisModule, only: DisType
use DisvModule, only: DisvType
use PrtFmiModule, only: PrtFmiType
use CellModule, only: CellType
use CellDefnModule, only: CellDefnType
Expand Down

0 comments on commit d3aa6be

Please sign in to comment.