-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.txt
More file actions
73 lines (54 loc) · 2.16 KB
/
Copy pathinput.txt
File metadata and controls
73 lines (54 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#########################################################
# #
# Histogram-Free Multicanonical Sampling - Input File #
# (using numerical integration as an example) #
# #
# To run binlessMUCA.py with this input file: #
# $ python binlessMUCA.py input.txt #
# #
# #
# Improved sampling scheme described in Section 4 in #
# the paper can be turned on/off by switching the #
# "improved" flag on/off. #
# #
#########################################################
################## Program Parameters ###################
# Seed for Random Number Generator **********************
# * specify the seed with any positive number
# * -1 : a random seed will be generated
seed = -1
# Function to Integrate *********************************
# * input in quotations - Python string
# * y(x) in Eq.(14)
function = "x**2.0"
# Integration Domain ************************************
# * a and b in Eq.(14)
xmin = -2.0
xmax = 2.0
# Number Of Points Per Data Set *************************
# * k in Eq.(5)
points_per_dataSet = 1000
# Maximum Number of Terms in Basis Set Expansion ********
# * max. value for m in Eq.(8)
maxBasisTerms = 100
# Kolmogorov-Smirnov Cutoff Probability *****************
# * cutoff value for p
KS_cutoff = 0.17
# Maximum Number of Iterations **************************
maxIter = 1000
# Flag for Improved Sampling Scheme *********************
# * 0 = standard, 1 = improved
# * s: pre-factor for correction in Eq.(18)
improved = 0
s = 0.25
################ Plots: 0 = off, 1 = on #################
# Plot the ECDF, F_0, and empirical remainder ***********
# after each iteration
plotCDF = 0
# Maximum Natural Log of DOS after each iteration *******
plotDOS_iter = 0
# Plot Natural Log of DOS at the end of simulation ******
plotDOS_end = 0
# Plot empirical remainder vs. analytic remainder *******
# after each iteration
plotFT = 0