Skip to content

Commit

Permalink
Fix single-point matrix fails
Browse files Browse the repository at this point in the history
  • Loading branch information
slevis-lmwg committed Oct 16, 2024
1 parent f726adb commit 9c9bdca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/SparseMatrixMultiplyMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,7 @@ subroutine SPMP_ABC(this,num_unit,filter_u,A,B,C,list_ready,list_A,list_B,list_C
call endrun( subname//" ERROR: missing required optional arguments" )
return
end if
SHR_ASSERT_FL((size(filter_actunit_C) > num_actunit_C), sourcefile, __LINE__)
SHR_ASSERT_FL((size(filter_actunit_C) >= num_actunit_C), sourcefile, __LINE__)
end if

if(.not. list_ready)then
Expand Down

0 comments on commit 9c9bdca

Please sign in to comment.