[licensing] replaced licensing with BSD, and erfcx

This commit is contained in:
Max Zwiessele 2015-09-07 17:26:27 +01:00
parent 1d5e46aa8e
commit c6d9ebf08d
8 changed files with 11 additions and 79 deletions

View file

@ -488,7 +488,7 @@ class Logistic(Transformation):
return instance()
newfunc = super(Transformation, cls).__new__
if newfunc is object.__new__:
o = newfunc(cls)
o = newfunc(cls)
else:
o = newfunc(cls, lower, upper, *args, **kwargs)
cls._instances.append(weakref.ref(o))

View file

@ -1,5 +1,5 @@
# Copyright (c) 2014, James Hensman, Alex Matthews
# Distributed under the terms of the GNU General public License, see LICENSE.txt
# Licensed under the BSD 3-clause license (see LICENSE.txt)
import numpy as np
from ..util import choleskies