Esempio n. 1
0
def set_safe_mode(status):
    """ Validity of cmatrix tested
    
    By default, bct-cpp checks the status of any connection matrix passed
    to a specialized function (i.e., one such as `bct.clustering_coef_bu`
    which is only intended to work on binary undirected matrices).
    If this status check fails, a message is printed to stderr, but the
    function still attempts to complete the calculation. To disable this
    behavior and avoid the minor computational overhead, call
    `bct.set_safe_mode(False)`. 
    """
    bct.set_safe_mode(status)
Esempio n. 2
0
def set_safe_mode(status):
    """ Validity of cmatrix tested
    
    By default, bct-cpp checks the status of any connection matrix passed
    to a specialized function (i.e., one such as `bct.clustering_coef_bu`
    which is only intended to work on binary undirected matrices).
    If this status check fails, a message is printed to stderr, but the
    function still attempts to complete the calculation. To disable this
    behavior and avoid the minor computational overhead, call
    `bct.set_safe_mode(False)`. 
    """
    bct.set_safe_mode(status)
Esempio n. 3
0
def set_safe_mode(*args):
  return _bct.set_safe_mode(*args)
Esempio n. 4
0
def set_safe_mode(*args):
    return _bct.set_safe_mode(*args)
Esempio n. 5
0
def set_safe_mode(*args):
  """set_safe_mode(bool safe_mode)"""
  return _bct.set_safe_mode(*args)
Esempio n. 6
0
def set_safe_mode(*args):
    """set_safe_mode(bool safe_mode)"""
    return _bct.set_safe_mode(*args)