From ec890b10236a91d0dda1706b44bebec7636a0019 Mon Sep 17 00:00:00 2001 From: Martin Bauer <martin.bauer@fau.de> Date: Fri, 10 Aug 2018 11:24:10 +0100 Subject: [PATCH] N phase model working -> test_numerical_1D notebook --- boundaries/inkernel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boundaries/inkernel.py b/boundaries/inkernel.py index 6d0ff9e66..73da40bee 100644 --- a/boundaries/inkernel.py +++ b/boundaries/inkernel.py @@ -1,7 +1,7 @@ import sympy as sp from pystencils import Field, TypedSymbol from pystencils.integer_functions import bitwise_and -from pystencils.boundaries.boundaryhandling import FlagInterface +from pystencils.boundaries.boundaryhandling import DEFAULT_FLAG_TYPE from pystencils.data_types import create_type @@ -22,7 +22,7 @@ def add_neumann_boundary(eqs, fields, flag_field, boundary_flag="neumann_flag", fields = set(fields) if type(boundary_flag) is str: - boundary_flag = TypedSymbol(boundary_flag, dtype=create_type(FlagInterface.FLAG_DTYPE)) + boundary_flag = TypedSymbol(boundary_flag, dtype=create_type(DEFAULT_FLAG_TYPE)) substitutions = {} for eq in eqs: -- GitLab