Skip to content

Commit 74414b4

Browse files
feat: add dill import
1 parent 03a270f commit 74414b4

5 files changed

Lines changed: 426 additions & 11 deletions

File tree

FoldOptLib/__init__.py

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
# from .fold_modelling import FoldModel, BaseFoldFrameBuilder
2-
from .helper import _helper, utils
3-
from .input import CheckInputData, InputDataProcessor
4-
from .objective_functions import GeologicalKnowledgeFunctions, VonMisesFisher, LeastSquaresFunctions, \
5-
loglikelihood_fourier_series, loglikelihood_axial_surface, gaussian_log_likelihood, loglikelihood, \
6-
is_axial_plane_compatible
7-
from .optimisers import FourierSeriesOptimiser, AxialSurfaceOptimiser
8-
from .splot import SPlotProcessor
9-
from .ipywidgets_interface import create_value_widgets, on_add_button_click, on_constraint_change, \
10-
on_sub_constraint_change, display_dict_selection
1+
"""FoldOptLib package."""
2+
from .version import __version__
3+
4+
__all__ = ["__version__"]
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""Compatibility layer for historical `FoldOptLib.fold_modelling_plugin` imports."""
2+
3+
__all__ = []
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .utils import * # noqa: F401,F403 - re-export utilities

0 commit comments

Comments
 (0)