Commit 996dae5
committed
Fix NumericVector::compare
The parallel failures from idaholab/moose#23788 are:
```
libMesh terminating:
No index 5 in ghosted vector.
Vector contains [5,5)
And ghost array {4,0}
```
because prior to this commit if the first local index was equal
to the last local index we would go ahead and attempt to index
into the vector with first local index anyway. Now we avoid that
scenario1 parent 8049421 commit 996dae5
1 file changed
Lines changed: 7 additions & 8 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
117 | | - | |
118 | | - | |
119 | | - | |
120 | | - | |
121 | | - | |
122 | | - | |
123 | | - | |
124 | 117 | | |
125 | | - | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
126 | 125 | | |
127 | 126 | | |
128 | 127 | | |
| |||
0 commit comments