Skip to content

Commit 62f45c1

Browse files
committed
deep narrow paths mutation conf var docs, cleanup and renames
1 parent 1fd4b97 commit 62f45c1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

config/defaults.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@
8080
MUTPB_SP = 0.05 # prob to simplify pattern (warning: can restrict exploration)
8181
MUTPB_DN = 0.05 # prob to try a deep and narrow paths mutation
8282
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
8888

8989
# for import in helpers and __init__
9090
__all__ = [_v for _v in globals().keys() if _v.isupper()]

0 commit comments

Comments
 (0)