Skip to content

Commit

Permalink
feat: added types
Browse files Browse the repository at this point in the history
  • Loading branch information
rabii-chaarani committed Apr 9, 2024
1 parent c0fdf65 commit 6c666ab
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions FoldOptLib/types/enums.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from enum import IntEnum


class DataType(IntEnum):
FoldedAxialSurface = 0
FoldedFoliation = 0
GeologicalKnowledge = 1
BoundingBox = 2

class ObjectiveType(IntEnum):
Asymmetry = 0
AxialTrace = 1
FoldWavelength = 2
AxisWavelength = 3
Tightness = 4
HingeAngle = 5
AxialSurface = 6

class DistributionType(IntEnum):
Normal = 0
VonMisesFisher = 1

class OptimisationType(IntEnum):
Angle = 0
MaximumLikelihoodEstimation = 1
LeastSquares = 2
Probabilistic = 3

0 comments on commit 6c666ab

Please sign in to comment.