Skip to content

Commit fe8ac97

Browse files
committed
Added LDTkLD version of the LDTkLDModel to conform with the code presented in the paper.
1 parent bf1f047 commit fe8ac97

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

pytransit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
from .models.ma_uniform_cl import UniformModelCL
6060
from .models.swiftmodel_cl import SwiftModelCL
6161

62-
from .models.ldtkldm import LDTkLDModel
62+
from .models.ldtkldm import LDTkLDModel, LDTkLD
6363

6464
# Generic
6565
# -------

pytransit/models/ldtkldm.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,3 +120,5 @@ def _evaluate(self, mu: ndarray, x:ndarray) -> ndarray:
120120
def _integrate(self, x: ndarray) -> float:
121121
raise NotImplementedError
122122

123+
class LDTkLD(LDTkLDModel):
124+
...

0 commit comments

Comments
 (0)