From 1d34e9247459bc1b22fbdf25cec853149c902929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Czy=C5=BC?= <pczyz@protonmail.com> Date: Thu, 5 Dec 2024 20:19:28 +0100 Subject: [PATCH] Add todo comment --- src/pmhn/_trees/__init__.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pmhn/_trees/__init__.py b/src/pmhn/_trees/__init__.py index daac756..744a8e9 100644 --- a/src/pmhn/_trees/__init__.py +++ b/src/pmhn/_trees/__init__.py @@ -7,9 +7,12 @@ https://doi.org/10.1038/s41467-023-39400-w """ -from pmhn._trees._simulate import simulate_trees -from pmhn._trees._interfaces import Tree +# TODO(Pawel): test if this implementation works. + + from pmhn._trees._backend import OriginalTreeMHNBackend +from pmhn._trees._interfaces import Tree +from pmhn._trees._simulate import simulate_trees __all__ = [ "simulate_trees",