File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def __call__(self, x):
2626 return self .a * (self .b / self .a ) ** x
2727
2828
29- def forced_indentifiability_transform (x ):
29+ def forced_identifiability_transform (x ):
3030 N = len (x )
3131 t = numpy .zeros (N )
3232 t [N - 1 ] = x [N - 1 ]** (1. / N )
@@ -37,11 +37,11 @@ def forced_indentifiability_transform(x):
3737
3838class SortedUniformPrior (UniformPrior ):
3939 def __call__ (self , x ):
40- t = forced_indentifiability_transform (x )
40+ t = forced_identifiability_transform (x )
4141 return super (SortedUniformPrior , self ).__call__ (t )
4242
4343
4444class LogSortedUniformPrior (LogUniformPrior ):
4545 def __call__ (self , x ):
46- t = forced_indentifiability_transform (x )
46+ t = forced_identifiability_transform (x )
4747 return super (LogSortedUniformPrior , self ).__call__ (t )
You can’t perform that action at this time.
0 commit comments