File size: 447 Bytes
9abfc01 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
###################################################################
# Numexpr - Fast numerical array expression evaluator for NumPy.
#
# License: MIT
# Author: See AUTHORS.txt
#
# See LICENSE.txt and LICENSES/*.txt for details about copyright and
# rights to use.
####################################################################
from numexpr.tests.test_numexpr import test, print_versions
if __name__ == '__main__':
test()
|