Skip to content
Snippets Groups Projects

Adapt Python bindings to renamed communicator

Merged Anna Wellmann requested to merge m.schoenherr/VirtualFluids_dev:develop into develop
2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -132,10 +132,10 @@ class BoundaryConditionFactory:
def set_stress_boundary_condition(self, boundary_condition_type) -> None: ...
def set_velocity_boundary_condition(self, boundary_condition_type) -> None: ...
class Communicator:
class MpiCommunicator:
def __init__(self, *args, **kwargs) -> None: ...
@staticmethod
def get_instance() -> Communicator: ...
def get_instance() -> MpiCommunicator: ...
def get_number_of_process(self) -> int: ...
def get_pid(self) -> int: ...
Loading