Skip to content
Snippets Groups Projects
Commit 78fda6a0 authored by Nils Kohl's avatar Nils Kohl :full_moon_with_face:
Browse files

Typing issue II in generate_all_operators.py.

parent 6e652f54
No related branches found
No related tags found
1 merge request!2Vector operators
Pipeline #66264 failed
...@@ -22,7 +22,7 @@ from functools import partial ...@@ -22,7 +22,7 @@ from functools import partial
import logging import logging
import os import os
import re import re
from typing import Callable, List, Optional, Sequence, Set, Tuple from typing import Callable, List, Optional, Sequence, Set, Tuple, Union
import numpy as np import numpy as np
import sympy as sp import sympy as sp
...@@ -537,7 +537,7 @@ def all_operators( ...@@ -537,7 +537,7 @@ def all_operators(
opts: List[Tuple[Set[Opts], LoopStrategy, str]], opts: List[Tuple[Set[Opts], LoopStrategy, str]],
type_descriptor: HOGType, type_descriptor: HOGType,
blending: GeometryMap, blending: GeometryMap,
geometries: Set[ElementGeometry], geometries: Set[Union[TriangleElement, TetrahedronElement]],
) -> List[OperatorInfo]: ) -> List[OperatorInfo]:
P1 = LagrangianFunctionSpace(1, symbolizer) P1 = LagrangianFunctionSpace(1, symbolizer)
P1Vector = TensorialVectorFunctionSpace(P1) P1Vector = TensorialVectorFunctionSpace(P1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment