Skip to content
Snippets Groups Projects
Commit 03296ab9 authored by Markus Holzer's avatar Markus Holzer
Browse files

Fix warnings

parent 40d849d8
No related branches found
No related tags found
1 merge request!209Enable all test cases in windows pipeline
Pipeline #30175 passed
......@@ -338,7 +338,7 @@ def discretize_staggered(term, symbols_to_field_dict, coordinate, coordinate_off
offset = [0] * dim
offset[coordinate] = coordinate_offset
offset = np.array(offset, dtype=np.int)
offset = np.array(offset, dtype=int)
gradient = grad(symbols)[coordinate]
substitutions.update({s: (field[offset](i) + field(i)) / 2 for i, s in enumerate(symbols)})
......@@ -386,7 +386,7 @@ def discretize_divergence(vector_term, symbols_to_field_dict, dx):
def __up_down_offsets(d, dim):
coord = [0] * dim
coord[d] = 1
up = np.array(coord, dtype=np.int)
up = np.array(coord, dtype=int)
coord[d] = -1
down = np.array(coord, dtype=np.int)
down = np.array(coord, dtype=int)
return up, down
......@@ -114,8 +114,8 @@ def test_Basic_data_type():
assert s.dtype.is_uint()
assert s.dtype.is_complex() == 0
assert typed_symbols(("s"), np.str).dtype.is_other()
assert typed_symbols(("s"), np.bool).dtype.is_other()
assert typed_symbols(("s"), str).dtype.is_other()
assert typed_symbols(("s"), bool).dtype.is_other()
assert typed_symbols(("s"), np.void).dtype.is_other()
assert typed_symbols(("s"), np.float64).dtype.base_name == 'double'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment