We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79e2c54 commit e2edcd0Copy full SHA for e2edcd0
config/defaults.py
@@ -78,6 +78,9 @@
78
MUTPB_FV_SAMPLE_MAXN = 32 # max n of instantiations to sample from top k
79
MUTPB_FV_QUERY_LIMIT = 256 # SPARQL query limit for the top k instantiations
80
MUTPB_SP = 0.05 # prob to simplify pattern (warning: can restrict exploration)
81
-
+MUTPB_DN = 0.05 # prob to try a deep and narrow paths mutation
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
# for import in helpers and __init__
86
__all__ = [_v for _v in globals().keys() if _v.isupper()]
0 commit comments