Skip to content

Commit 3c19cc6

Browse files
authored
Merge pull request #125 from devmotion/clean_exports
Clean exports
2 parents e1ef63b + 2ab6e94 commit 3c19cc6

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -212,13 +212,6 @@ unwhiten(a, x) # inverse of whitening transform. `x` can be a vector or
212212
unwhiten!(a, x) # un-whitening transform inplace, updating `x`.
213213

214214
unwhiten!(r, a, x) # write the transformed result to `r`.
215-
216-
test_pdmat(a, amat) # test the correctness of implementation, given an
217-
# instance of some sub-type of `AbstractPDMat`, and
218-
# a corresponding full matrix.
219-
#
220-
# Note: this function is provided for the developers
221-
# who want to define their own customized sub types.
222215
```
223216

224217

src/PDMats.jl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,20 @@ module PDMats
1414

1515
# Functions
1616
dim,
17-
full,
1817
whiten,
1918
whiten!,
2019
unwhiten,
2120
unwhiten!,
2221
pdadd,
2322
pdadd!,
24-
add_scal,
25-
add_scal!,
2623
quad,
2724
quad!,
2825
invquad,
2926
invquad!,
3027
X_A_Xt,
3128
Xt_A_X,
3229
X_invA_Xt,
33-
Xt_invA_X,
34-
test_pdmat
30+
Xt_invA_X
3531

3632

3733
"""

0 commit comments

Comments
 (0)