File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 80
80
MUTPB_SP = 0.05 # prob to simplify pattern (warning: can restrict exploration)
81
81
MUTPB_DN = 0.05 # prob to try a deep and narrow paths mutation
82
82
MUTPB_DN_MIN_LEN = 2 # minimum length of the deep and narrow paths
83
- MUTPB_DN_MAX_LEN = 10 # absolute max of path length if not stopped by term_pb
84
- MUTPB_DN_TERM_PB = 0.3 # prob to terminate node expansion each step > min_len
85
- MUTPB_DN_FILTER_NODE_COUNT = 10
86
- MUTPB_DN_FILTER_EDGE_COUNT = 1
87
- MUTPB_DN_QUERY_LIMIT = 32
83
+ MUTPB_DN_MAX_LEN = 10 # max of path length if not stopped by term_pb
84
+ MUTPB_DN_TERM_PB = 0.3 # prob to terminate expansion each step > min_len
85
+ MUTPB_DN_MAX_NODE_COUNT = 10 # edge fixations may have <= nodes
86
+ MUTPB_DN_MIN_EDGE_COUNT = 2 # edges need to be valid for >= GTPs
87
+ MUTPB_DN_QUERY_LIMIT = 32 # SPARQL query limit for top edge fixations
88
88
89
89
# for import in helpers and __init__
90
90
__all__ = [_v for _v in globals ().keys () if _v .isupper ()]
You can’t perform that action at this time.
0 commit comments