25 lines
432 B
Python
25 lines
432 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Created on Sun Sep 10 07:07:28 2023
|
|
|
|
@author: astral
|
|
"""
|
|
|
|
import sys as _sys
|
|
from sign import significance as _sign
|
|
import numpy as _np
|
|
|
|
import gc as _gc
|
|
|
|
_dim = 9
|
|
_epsilons = _np.linspace(0.01,0.20,20)
|
|
|
|
for _eps in _epsilons[_sys.argv[1]]:
|
|
_sign(_dim,_eps)
|
|
|
|
for name in dir():
|
|
if not name.startswith('_'):
|
|
del globals()[name]
|
|
|
|
_gc.collect() |