cheasecrmod 0.0.0 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +6 -0
- data/VERSION +1 -1
- data/cheasecrmod.gemspec +8 -3
- data/lib/cheasecrmod.rb +1 -0
- data/lib/cheasecrmod/chease.rb +245 -0
- data/lib/cheasecrmod/namelists.rb +2024 -0
- data/sync_variables/helper.rb +18 -0
- data/sync_variables/sync_variables.rb +6 -0
- data/test/helper.rb +1 -1
- data/test/solovev/chease_namelist_EXAMPLE.in +95 -0
- data/test/test_cheasecrmod.rb +41 -2
- metadata +7 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 437c0c3a9b975a13080911ecfb33adb1a6875aaa
|
4
|
+
data.tar.gz: 2bd68a29a7d0ede9c0ef5564636ac092ab76248c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 984da3375166381c4b10b3a44f3955e24106a1670906461cfdd57b1370358d61801ff96686a2ed1c5e40944205c53c1c2ad40e027a2f968ddde13bb9a9a8b0e8
|
7
|
+
data.tar.gz: 330228de60075fe5c5a541eed8a87dadbe363c413eba287720018ff8f37bf2f2d67f2362c80bdd2151cc532aad853c88790c5755c7ca5ae1847211a2576a1230
|
data/Rakefile
CHANGED
@@ -32,6 +32,12 @@ Rake::TestTask.new(:test) do |test|
|
|
32
32
|
test.verbose = true
|
33
33
|
end
|
34
34
|
|
35
|
+
Rake::TestTask.new(:sync_variables) do |test|
|
36
|
+
test.libs << 'lib' << 'sync_variables'
|
37
|
+
test.pattern = 'sync_variables/sync_variables.rb'
|
38
|
+
test.verbose = true
|
39
|
+
end
|
40
|
+
|
35
41
|
desc "Code coverage detail"
|
36
42
|
task :simplecov do
|
37
43
|
ENV['COVERAGE'] = "true"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.1.0
|
data/cheasecrmod.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: cheasecrmod 0.
|
5
|
+
# stub: cheasecrmod 0.1.0 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "cheasecrmod"
|
9
|
-
s.version = "0.
|
9
|
+
s.version = "0.1.0"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
13
13
|
s.authors = ["Edmund Highcock"]
|
14
|
-
s.date = "2014-06-
|
14
|
+
s.date = "2014-06-25"
|
15
15
|
s.description = "A module which allows the CHEASE Grad-Shafranov solver to be run using the CodeRunner framework. "
|
16
16
|
s.email = "edmundhighcock@users.sourceforge.net"
|
17
17
|
s.extra_rdoc_files = [
|
@@ -27,7 +27,12 @@ Gem::Specification.new do |s|
|
|
27
27
|
"VERSION",
|
28
28
|
"cheasecrmod.gemspec",
|
29
29
|
"lib/cheasecrmod.rb",
|
30
|
+
"lib/cheasecrmod/chease.rb",
|
31
|
+
"lib/cheasecrmod/namelists.rb",
|
32
|
+
"sync_variables/helper.rb",
|
33
|
+
"sync_variables/sync_variables.rb",
|
30
34
|
"test/helper.rb",
|
35
|
+
"test/solovev/chease_namelist_EXAMPLE.in",
|
31
36
|
"test/test_cheasecrmod.rb"
|
32
37
|
]
|
33
38
|
s.homepage = "http://github.com/edmundhighcock/cheasecrmod"
|
data/lib/cheasecrmod.rb
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
require 'cheasecrmod/chease'
|
@@ -0,0 +1,245 @@
|
|
1
|
+
|
2
|
+
class CodeRunner
|
3
|
+
# This is a customised subclass of the CodeRunner::Run class which allows CodeRunner to run and analyse the Grad Shafranov solver chease (See Bondesen, Comp Phys Comm 1996)
|
4
|
+
#
|
5
|
+
class Chease < Run::FortranNamelist
|
6
|
+
#include CodeRunner::SYSTEM_MODULE
|
7
|
+
#
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
# Where this file is
|
13
|
+
@code_module_folder = folder = File.dirname(File.expand_path(__FILE__)) # i.e. the directory this file is in
|
14
|
+
|
15
|
+
# Use the Run::FortranNamelist tools to process the variable database
|
16
|
+
setup_namelists(@code_module_folder)
|
17
|
+
|
18
|
+
# Setup gs2 in case people are using it
|
19
|
+
|
20
|
+
################################################
|
21
|
+
# Quantities that are read or determined by CodeRunner
|
22
|
+
# after the simulation has ended
|
23
|
+
###################################################
|
24
|
+
|
25
|
+
@results = [
|
26
|
+
]
|
27
|
+
|
28
|
+
@code_long="CHEASE Grad Shafranov Solver"
|
29
|
+
|
30
|
+
@run_info=[:time, :is_a_restart, :restart_id, :restart_run_name, :completed_timesteps, :percent_complete]
|
31
|
+
|
32
|
+
@uses_mpi = false
|
33
|
+
|
34
|
+
@modlet_required = false
|
35
|
+
|
36
|
+
@naming_pars = []
|
37
|
+
|
38
|
+
# Any folders which are a number will contain the results from flux simulations.
|
39
|
+
@excluded_sub_folders = []
|
40
|
+
|
41
|
+
# A hook which gets called when printing the standard run information to the screen using the status command.
|
42
|
+
def print_out_line
|
43
|
+
#p ['id', id, 'ctd', ctd]
|
44
|
+
#p rcp.results.zip(rcp.results.map{|r| send(r)})
|
45
|
+
name = @run_name
|
46
|
+
name += " (res: #@restart_id)" if @restart_id
|
47
|
+
name += " real_id: #@real_id" if @real_id
|
48
|
+
beginning = sprintf("%2d:%d %-60s %1s:%2.1f(%s) %3s%1s", @id, @job_no, name, @status.to_s[0,1], @run_time.to_f / 60.0, @nprocs.to_s, percent_complete, "%")
|
49
|
+
if ctd
|
50
|
+
#beginning += sprintf("Q:%f, Pfusion:%f MW, Ti0:%f keV, Te0:%f keV, n0:%f x10^20", fusionQ, pfus, ti0, te0, ne0)
|
51
|
+
end
|
52
|
+
beginning += " ---#{@comment}" if @comment
|
53
|
+
beginning
|
54
|
+
end
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
# Modify new_run so that it becomes a restart of self. Adusts
|
59
|
+
# all the parameters of the new run to be equal to the parameters
|
60
|
+
# of the run that calls this function, and sets up its run name
|
61
|
+
# correctly
|
62
|
+
def restart(new_run)
|
63
|
+
#new_run = self.dup
|
64
|
+
(rcp.variables).each{|v| new_run.set(v, send(v)) if send(v)}
|
65
|
+
#if @flux_option == "gs2"
|
66
|
+
#gs2_runs.each_with_index do |run, i|
|
67
|
+
#CodeRunner::Gs2.rcp.variables.each{|v| new_run.gs2_runs[i].set(v, run.send(v)) if run.send(v)}
|
68
|
+
#end
|
69
|
+
#end
|
70
|
+
#@naming_pars.delete(:preamble)
|
71
|
+
#SUBMIT_OPTIONS.each{|v| new_run.set(v, self.send(v)) unless new_run.send(v)}
|
72
|
+
##(rcp.results + rcp.gs2_run_info).each{|result| new_run.set(result, nil)}
|
73
|
+
new_run.is_a_restart = true
|
74
|
+
new_run.restart_id = @id
|
75
|
+
new_run.restart_run_name = @run_name
|
76
|
+
new_run.nopt = -1
|
77
|
+
#new_run.init_option = "restart"
|
78
|
+
#new_run.iternt_file = @run_name + ".iternt"
|
79
|
+
#new_run.iterflx_file = @run_name + ".iterflx"
|
80
|
+
#new_run.init_file = @run_name + ".tmp"
|
81
|
+
#@runner.nprocs = @nprocs if @runner.nprocs == "1" # 1 is the default so this means the user probably didn't specify nprocs
|
82
|
+
#raise "Restart must be on the same number of processors as the previous run: new is #{new_run.nprocs.inspect} and old is #{@nprocs.inspect}" if !new_run.nprocs or new_run.nprocs != @nprocs
|
83
|
+
### @runner.parameters.each{|var, value| new_run.set(var,value)} if @runner.parameters
|
84
|
+
### ep @runner.parameters
|
85
|
+
new_run.run_name = nil
|
86
|
+
new_run.naming_pars = @naming_pars
|
87
|
+
new_run.update_submission_parameters(new_run.parameter_hash.inspect, false) if new_run.parameter_hash
|
88
|
+
new_run.naming_pars.delete(:restart_id)
|
89
|
+
new_run.generate_run_name
|
90
|
+
#new_run.run_name += '_t'
|
91
|
+
eputs 'Copying CHEASE Restart file'
|
92
|
+
##system "ls #@directory"
|
93
|
+
FileUtils.cp("#@directory/NOUT", "#{new_run.directory}/NIN")
|
94
|
+
##########if new_run.flux_option == "gs2" and @flux_option == "gs2"
|
95
|
+
##########for i in 0...n_flux_tubes
|
96
|
+
##########new_run.gs2_runs[i].directory = new_run.directory + "/flux_tube_#{i+1}"
|
97
|
+
##########FileUtils.makedirs(new_run.gs2_runs[i].directory)
|
98
|
+
###########ep ['gs2_runs[i] before', gs2_runs[i].nwrite, new_run.gs2_runs[i].nwrite, new_run.gs2_runs[i].parameter_hash]
|
99
|
+
##########gs2_runs[i].restart(new_run.gs2_runs[i])
|
100
|
+
###########ep ['gs2_runs[i] after', gs2_runs[i].nwrite, new_run.gs2_runs[i].nwrite, new_run.gs2_runs[i].parameter_hash]
|
101
|
+
###########new_run.gs2_runs[i].run_name = new_run.run_name + (i+1).to_s
|
102
|
+
##########end
|
103
|
+
##########end
|
104
|
+
##@runner.submit(new_run)
|
105
|
+
#new_run
|
106
|
+
end
|
107
|
+
# This is a hook which gets called just before submitting a simulation. It sets up the folder and generates any necessary input files.
|
108
|
+
def generate_input_file
|
109
|
+
check_parameters
|
110
|
+
if @restart_id
|
111
|
+
@runner.run_list[@restart_id].restart(self)
|
112
|
+
end
|
113
|
+
write_input_file
|
114
|
+
end
|
115
|
+
|
116
|
+
def check_parameters
|
117
|
+
end
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
def vim_output
|
122
|
+
system "vim -Ro #{output_file} #{error_file}"
|
123
|
+
end
|
124
|
+
alias :vo :vim_output
|
125
|
+
|
126
|
+
# This command uses the infrastructure provided by Run::FortranNamelist, provided by CodeRunner itself.
|
127
|
+
def write_input_file
|
128
|
+
File.open("chease_namelist", 'w'){|file| file.puts input_file_text}
|
129
|
+
end
|
130
|
+
|
131
|
+
# Parameters which follow the Trinity executable, in this case just the input file.
|
132
|
+
def parameter_string
|
133
|
+
" chease_namelist"
|
134
|
+
end
|
135
|
+
|
136
|
+
def parameter_transition
|
137
|
+
end
|
138
|
+
|
139
|
+
def generate_component_runs
|
140
|
+
#puts "HERE"
|
141
|
+
end
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
@source_code_subfolders = []
|
146
|
+
|
147
|
+
# This method, as its name suggests, is called whenever CodeRunner is asked to analyse a run directory. This happens if the run status is not :Complete, or if the user has specified recalc_all(-A on the command line) or reprocess_all (-a on the command line).
|
148
|
+
#
|
149
|
+
def process_directory_code_specific
|
150
|
+
get_status
|
151
|
+
#p ['id is', id, 'ctd is ', ctd]
|
152
|
+
#if ctd
|
153
|
+
#get_global_results
|
154
|
+
#end
|
155
|
+
#p ['fusionQ is ', fusionQ]
|
156
|
+
#@percent_complete = completed_timesteps.to_f / ntstep.to_f * 100.0
|
157
|
+
end
|
158
|
+
|
159
|
+
def get_status
|
160
|
+
return :Unknown
|
161
|
+
end
|
162
|
+
|
163
|
+
|
164
|
+
@fortran_namelist_source_file_match = /(?<!assign_code_parameters)((\.f9[05])|(\.fpp)|COMDAT.inc)$/
|
165
|
+
|
166
|
+
def input_file_header
|
167
|
+
<<EOF
|
168
|
+
!==============================================================================
|
169
|
+
! CHEASE INPUT FILE automatically generated by CodeRunner
|
170
|
+
!==============================================================================
|
171
|
+
!
|
172
|
+
! CHEASE is a code which solves the Grad Shafranov equation using
|
173
|
+
! Cubic Hermite finite Elements
|
174
|
+
!
|
175
|
+
! See Lutjens et al, Computer Physics Communications, 1996
|
176
|
+
!
|
177
|
+
! CodeRunner is a framework for the automated running and analysis
|
178
|
+
! of large simulations.
|
179
|
+
!
|
180
|
+
! See http://coderunner.sourceforge.net
|
181
|
+
!
|
182
|
+
! Created #{Time.now.to_s}
|
183
|
+
! by CodeRunner version #{CodeRunner::CODE_RUNNER_VERSION.to_s}
|
184
|
+
!
|
185
|
+
!==============================================================================
|
186
|
+
|
187
|
+
EOF
|
188
|
+
end
|
189
|
+
def self.defaults_file_header
|
190
|
+
<<EOF1
|
191
|
+
############################################################################
|
192
|
+
# #
|
193
|
+
# Automatically generated defaults file for the CHEASE CodeRunner module #
|
194
|
+
# #
|
195
|
+
# This defaults file specifies a set of defaults for CHEASE which are #
|
196
|
+
# used by CodeRunner to set up and run CHEASE simulations. #
|
197
|
+
# #
|
198
|
+
############################################################################
|
199
|
+
|
200
|
+
# Created: #{Time.now.to_s}
|
201
|
+
|
202
|
+
@defaults_file_description = ""
|
203
|
+
EOF1
|
204
|
+
end
|
205
|
+
|
206
|
+
|
207
|
+
def input_file_extension
|
208
|
+
''
|
209
|
+
end
|
210
|
+
|
211
|
+
@msdatching_regex = Regexp.new('(^|\A)(?<everything>[^!
|
212
|
+
]*?\b #a word boundary
|
213
|
+
|
214
|
+
(?<name>[A-Za-z_]\w*) # the name, which must be a single word (not beginning
|
215
|
+
# with a digit) followed by
|
216
|
+
|
217
|
+
\s*=\s* # an equals sign (possibly with whitespace either side), then
|
218
|
+
|
219
|
+
(?<default>(?> # the default answer, which can be either:
|
220
|
+
|
221
|
+
(?<string>' + Regexp.quoted_string.to_s + ') # a quoted string
|
222
|
+
|
223
|
+
| # or
|
224
|
+
|
225
|
+
|
226
|
+
(?<float>\-?(?:(?>\d+\.\d*)|(?>\d*\.\d+))(?:[eEdD][+-]?\d+)?)(?:_RKIND)? # a floating point number
|
227
|
+
|
228
|
+
| #or
|
229
|
+
|
230
|
+
(?<int>\-?\d++) # an integer
|
231
|
+
|
232
|
+
| #or
|
233
|
+
|
234
|
+
(?<complex>\((?:\-?(?:(?>\d+\.\d*)|(?>\d*\.\d+))(?:[eEdD][+-]?\d+)?),\s*(?:\-?(?:(?>\d+\.\d*)|(?>\d*\.\d+))(?:[eEdD][+-]?\d+)?)\)) #a complex number
|
235
|
+
|
236
|
+
| #or
|
237
|
+
|
238
|
+
|
239
|
+
(?:(?<word>\S+)(?=\s|\)|\]|[\n\r]+|\Z)) # a single word containing no spaces
|
240
|
+
# which must be followed by a space or ) or ] or \n or \Z
|
241
|
+
|
242
|
+
)))', Regexp::EXTENDED)
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
@@ -0,0 +1,2024 @@
|
|
1
|
+
{:eqdata=>
|
2
|
+
{:description=>"",
|
3
|
+
:should_include=>"true",
|
4
|
+
:variables=>
|
5
|
+
{:afbs=>
|
6
|
+
{:should_include=>"true",
|
7
|
+
:description=>nil,
|
8
|
+
:help=>nil,
|
9
|
+
:code_name=>:afbs,
|
10
|
+
:must_pass=>
|
11
|
+
[{:test=>"kind_of? Numeric",
|
12
|
+
:explanation=>
|
13
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
14
|
+
:type=>:Float},
|
15
|
+
:afbs2=>
|
16
|
+
{:should_include=>"true",
|
17
|
+
:description=>nil,
|
18
|
+
:help=>nil,
|
19
|
+
:code_name=>:afbs2,
|
20
|
+
:must_pass=>
|
21
|
+
[{:test=>"kind_of? Numeric",
|
22
|
+
:explanation=>
|
23
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
24
|
+
:type=>:Float},
|
25
|
+
:ap=>
|
26
|
+
{:should_include=>"true",
|
27
|
+
:description=>nil,
|
28
|
+
:help=>nil,
|
29
|
+
:code_name=>:ap,
|
30
|
+
:must_pass=>
|
31
|
+
[{:test=>"kind_of? Numeric",
|
32
|
+
:explanation=>
|
33
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
34
|
+
:type=>:Float},
|
35
|
+
:aplace=>
|
36
|
+
{:should_include=>"true",
|
37
|
+
:description=>nil,
|
38
|
+
:help=>nil,
|
39
|
+
:code_name=>:aplace,
|
40
|
+
:must_pass=>
|
41
|
+
[{:test=>"kind_of? Numeric",
|
42
|
+
:explanation=>
|
43
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
44
|
+
:type=>:Float},
|
45
|
+
:ap2=>
|
46
|
+
{:should_include=>"true",
|
47
|
+
:description=>nil,
|
48
|
+
:help=>nil,
|
49
|
+
:code_name=>:ap2,
|
50
|
+
:must_pass=>
|
51
|
+
[{:test=>"kind_of? Numeric",
|
52
|
+
:explanation=>
|
53
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
54
|
+
:type=>:Float},
|
55
|
+
:aspct=>
|
56
|
+
{:should_include=>"true",
|
57
|
+
:description=>nil,
|
58
|
+
:help=>nil,
|
59
|
+
:code_name=>:aspct,
|
60
|
+
:must_pass=>
|
61
|
+
[{:test=>"kind_of? Numeric",
|
62
|
+
:explanation=>
|
63
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
64
|
+
:type=>:Float},
|
65
|
+
:at=>
|
66
|
+
{:should_include=>"true",
|
67
|
+
:description=>nil,
|
68
|
+
:help=>nil,
|
69
|
+
:code_name=>:at,
|
70
|
+
:must_pass=>
|
71
|
+
[{:test=>"kind_of? Numeric",
|
72
|
+
:explanation=>
|
73
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
74
|
+
:type=>:Float},
|
75
|
+
:at2=>
|
76
|
+
{:should_include=>"true",
|
77
|
+
:description=>nil,
|
78
|
+
:help=>nil,
|
79
|
+
:code_name=>:at2,
|
80
|
+
:must_pass=>
|
81
|
+
[{:test=>"kind_of? Numeric",
|
82
|
+
:explanation=>
|
83
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
84
|
+
:type=>:Float},
|
85
|
+
:at3=>
|
86
|
+
{:should_include=>"true",
|
87
|
+
:description=>nil,
|
88
|
+
:help=>nil,
|
89
|
+
:code_name=>:at3,
|
90
|
+
:must_pass=>
|
91
|
+
[{:test=>"kind_of? Numeric",
|
92
|
+
:explanation=>
|
93
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
94
|
+
:type=>:Float},
|
95
|
+
:at4=>
|
96
|
+
{:should_include=>"true",
|
97
|
+
:description=>nil,
|
98
|
+
:help=>nil,
|
99
|
+
:code_name=>:at4,
|
100
|
+
:must_pass=>
|
101
|
+
[{:test=>"kind_of? Numeric",
|
102
|
+
:explanation=>
|
103
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
104
|
+
:type=>:Float},
|
105
|
+
:awidth=>
|
106
|
+
{:should_include=>"true",
|
107
|
+
:description=>nil,
|
108
|
+
:help=>nil,
|
109
|
+
:code_name=>:awidth,
|
110
|
+
:must_pass=>
|
111
|
+
[{:test=>"kind_of? Numeric",
|
112
|
+
:explanation=>
|
113
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
114
|
+
:type=>:Float},
|
115
|
+
:beans=>
|
116
|
+
{:should_include=>"true",
|
117
|
+
:description=>nil,
|
118
|
+
:help=>nil,
|
119
|
+
:code_name=>:beans,
|
120
|
+
:must_pass=>
|
121
|
+
[{:test=>"kind_of? Numeric",
|
122
|
+
:explanation=>
|
123
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
124
|
+
:type=>:Float},
|
125
|
+
:bentaxis=>
|
126
|
+
{:should_include=>"true",
|
127
|
+
:description=>nil,
|
128
|
+
:help=>nil,
|
129
|
+
:code_name=>:bentaxis,
|
130
|
+
:must_pass=>
|
131
|
+
[{:test=>"kind_of? Numeric",
|
132
|
+
:explanation=>
|
133
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
134
|
+
:type=>:Float},
|
135
|
+
:bentqprofile=>
|
136
|
+
{:should_include=>"true",
|
137
|
+
:description=>nil,
|
138
|
+
:help=>nil,
|
139
|
+
:code_name=>:bentqprofile,
|
140
|
+
:must_pass=>
|
141
|
+
[{:test=>"kind_of? Numeric",
|
142
|
+
:explanation=>
|
143
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
144
|
+
:type=>:Float},
|
145
|
+
:bentradius=>
|
146
|
+
{:should_include=>"true",
|
147
|
+
:description=>nil,
|
148
|
+
:help=>nil,
|
149
|
+
:code_name=>:bentradius,
|
150
|
+
:must_pass=>
|
151
|
+
[{:test=>"kind_of? Numeric",
|
152
|
+
:explanation=>
|
153
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
154
|
+
:type=>:Float},
|
155
|
+
:bplace=>
|
156
|
+
{:should_include=>"true",
|
157
|
+
:description=>nil,
|
158
|
+
:help=>nil,
|
159
|
+
:code_name=>:bplace,
|
160
|
+
:must_pass=>
|
161
|
+
[{:test=>"kind_of? Numeric",
|
162
|
+
:explanation=>
|
163
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
164
|
+
:type=>:Float},
|
165
|
+
:bsfrac=>
|
166
|
+
{:should_include=>"true",
|
167
|
+
:description=>nil,
|
168
|
+
:help=>nil,
|
169
|
+
:code_name=>:bsfrac,
|
170
|
+
:must_pass=>
|
171
|
+
[{:test=>"kind_of? Numeric",
|
172
|
+
:explanation=>
|
173
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
174
|
+
:type=>:Float},
|
175
|
+
:bwidth=>
|
176
|
+
{:should_include=>"true",
|
177
|
+
:description=>nil,
|
178
|
+
:help=>nil,
|
179
|
+
:code_name=>:bwidth,
|
180
|
+
:must_pass=>
|
181
|
+
[{:test=>"kind_of? Numeric",
|
182
|
+
:explanation=>
|
183
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
184
|
+
:type=>:Float},
|
185
|
+
:b0exp=>
|
186
|
+
{:should_include=>"true",
|
187
|
+
:description=>nil,
|
188
|
+
:help=>nil,
|
189
|
+
:code_name=>:b0exp,
|
190
|
+
:must_pass=>
|
191
|
+
[{:test=>"kind_of? Numeric",
|
192
|
+
:explanation=>
|
193
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
194
|
+
:type=>:Float},
|
195
|
+
:ceta=>
|
196
|
+
{:should_include=>"true",
|
197
|
+
:description=>nil,
|
198
|
+
:help=>nil,
|
199
|
+
:code_name=>:ceta,
|
200
|
+
:must_pass=>
|
201
|
+
[{:test=>"kind_of? Numeric",
|
202
|
+
:explanation=>
|
203
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
204
|
+
:type=>:Float},
|
205
|
+
:cfbal=>
|
206
|
+
{:should_include=>"true",
|
207
|
+
:description=>nil,
|
208
|
+
:help=>nil,
|
209
|
+
:code_name=>:cfbal,
|
210
|
+
:must_pass=>
|
211
|
+
[{:test=>"kind_of? Numeric",
|
212
|
+
:explanation=>
|
213
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
214
|
+
:type=>:Float},
|
215
|
+
:cfnress=>
|
216
|
+
{:should_include=>"true",
|
217
|
+
:description=>nil,
|
218
|
+
:help=>nil,
|
219
|
+
:code_name=>:cfnress,
|
220
|
+
:must_pass=>
|
221
|
+
[{:test=>"kind_of? Numeric",
|
222
|
+
:explanation=>
|
223
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
224
|
+
:type=>:Float},
|
225
|
+
:cfnresso=>
|
226
|
+
{:should_include=>"true",
|
227
|
+
:description=>nil,
|
228
|
+
:help=>nil,
|
229
|
+
:code_name=>:cfnresso,
|
230
|
+
:must_pass=>
|
231
|
+
[{:test=>"kind_of? Numeric",
|
232
|
+
:explanation=>
|
233
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
234
|
+
:type=>:Float},
|
235
|
+
:cocos_in=>
|
236
|
+
{:should_include=>"true",
|
237
|
+
:description=>nil,
|
238
|
+
:help=>nil,
|
239
|
+
:code_name=>:cocos_in,
|
240
|
+
:must_pass=>
|
241
|
+
[{:test=>"kind_of? Integer",
|
242
|
+
:explanation=>"This variable must be an integer."}],
|
243
|
+
:type=>:Integer},
|
244
|
+
:cocos_out=>
|
245
|
+
{:should_include=>"true",
|
246
|
+
:description=>nil,
|
247
|
+
:help=>nil,
|
248
|
+
:code_name=>:cocos_out,
|
249
|
+
:must_pass=>
|
250
|
+
[{:test=>"kind_of? Integer",
|
251
|
+
:explanation=>"This variable must be an integer."}],
|
252
|
+
:type=>:Integer},
|
253
|
+
:cplace=>
|
254
|
+
{:should_include=>"true",
|
255
|
+
:description=>nil,
|
256
|
+
:help=>nil,
|
257
|
+
:code_name=>:cplace,
|
258
|
+
:must_pass=>
|
259
|
+
[{:test=>"kind_of? Numeric",
|
260
|
+
:explanation=>
|
261
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
262
|
+
:type=>:Float},
|
263
|
+
:cpress=>
|
264
|
+
{:should_include=>"true",
|
265
|
+
:description=>nil,
|
266
|
+
:help=>nil,
|
267
|
+
:code_name=>:cpress,
|
268
|
+
:must_pass=>
|
269
|
+
[{:test=>"kind_of? Numeric",
|
270
|
+
:explanation=>
|
271
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
272
|
+
:type=>:Float},
|
273
|
+
:cpresso=>
|
274
|
+
{:should_include=>"true",
|
275
|
+
:description=>nil,
|
276
|
+
:help=>nil,
|
277
|
+
:code_name=>:cpresso,
|
278
|
+
:must_pass=>
|
279
|
+
[{:test=>"kind_of? Numeric",
|
280
|
+
:explanation=>
|
281
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
282
|
+
:type=>:Float},
|
283
|
+
:cq0=>
|
284
|
+
{:should_include=>"true",
|
285
|
+
:description=>nil,
|
286
|
+
:help=>nil,
|
287
|
+
:code_name=>:cq0,
|
288
|
+
:must_pass=>
|
289
|
+
[{:test=>"kind_of? Numeric",
|
290
|
+
:explanation=>
|
291
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
292
|
+
:type=>:Float},
|
293
|
+
:csspec=>
|
294
|
+
{:should_include=>"true",
|
295
|
+
:description=>nil,
|
296
|
+
:help=>nil,
|
297
|
+
:code_name=>:csspec,
|
298
|
+
:must_pass=>
|
299
|
+
[{:test=>"kind_of? Numeric",
|
300
|
+
:explanation=>
|
301
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
302
|
+
:type=>:Float},
|
303
|
+
:currt=>
|
304
|
+
{:should_include=>"true",
|
305
|
+
:description=>nil,
|
306
|
+
:help=>nil,
|
307
|
+
:code_name=>:currt,
|
308
|
+
:must_pass=>
|
309
|
+
[{:test=>"kind_of? Numeric",
|
310
|
+
:explanation=>
|
311
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
312
|
+
:type=>:Float},
|
313
|
+
:cwidth=>
|
314
|
+
{:should_include=>"true",
|
315
|
+
:description=>nil,
|
316
|
+
:help=>nil,
|
317
|
+
:code_name=>:cwidth,
|
318
|
+
:must_pass=>
|
319
|
+
[{:test=>"kind_of? Numeric",
|
320
|
+
:explanation=>
|
321
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
322
|
+
:type=>:Float},
|
323
|
+
:delta=>
|
324
|
+
{:should_include=>"true",
|
325
|
+
:description=>nil,
|
326
|
+
:help=>nil,
|
327
|
+
:code_name=>:delta,
|
328
|
+
:must_pass=>
|
329
|
+
[{:test=>"kind_of? Numeric",
|
330
|
+
:explanation=>
|
331
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
332
|
+
:type=>:Float},
|
333
|
+
:dlambda=>
|
334
|
+
{:should_include=>"true",
|
335
|
+
:description=>nil,
|
336
|
+
:help=>nil,
|
337
|
+
:code_name=>:dlambda,
|
338
|
+
:must_pass=>
|
339
|
+
[{:test=>"kind_of? Numeric",
|
340
|
+
:explanation=>
|
341
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
342
|
+
:type=>:Float},
|
343
|
+
:dplace=>
|
344
|
+
{:should_include=>"true",
|
345
|
+
:description=>nil,
|
346
|
+
:help=>nil,
|
347
|
+
:code_name=>:dplace,
|
348
|
+
:must_pass=>
|
349
|
+
[{:test=>"kind_of? Numeric",
|
350
|
+
:explanation=>
|
351
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
352
|
+
:type=>:Float},
|
353
|
+
:dpsi_ni=>
|
354
|
+
{:should_include=>"true",
|
355
|
+
:description=>nil,
|
356
|
+
:help=>nil,
|
357
|
+
:code_name=>:dpsi_ni,
|
358
|
+
:must_pass=>
|
359
|
+
[{:test=>"kind_of? Numeric",
|
360
|
+
:explanation=>
|
361
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
362
|
+
:type=>:Float},
|
363
|
+
:dpsi_ti=>
|
364
|
+
{:should_include=>"true",
|
365
|
+
:description=>nil,
|
366
|
+
:help=>nil,
|
367
|
+
:code_name=>:dpsi_ti,
|
368
|
+
:must_pass=>
|
369
|
+
[{:test=>"kind_of? Numeric",
|
370
|
+
:explanation=>
|
371
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
372
|
+
:type=>:Float},
|
373
|
+
:dwidth=>
|
374
|
+
{:should_include=>"true",
|
375
|
+
:description=>nil,
|
376
|
+
:help=>nil,
|
377
|
+
:code_name=>:dwidth,
|
378
|
+
:must_pass=>
|
379
|
+
[{:test=>"kind_of? Numeric",
|
380
|
+
:explanation=>
|
381
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
382
|
+
:type=>:Float},
|
383
|
+
:elong=>
|
384
|
+
{:should_include=>"true",
|
385
|
+
:description=>nil,
|
386
|
+
:help=>nil,
|
387
|
+
:code_name=>:elong,
|
388
|
+
:must_pass=>
|
389
|
+
[{:test=>"kind_of? Numeric",
|
390
|
+
:explanation=>
|
391
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
392
|
+
:type=>:Float},
|
393
|
+
:eplace=>
|
394
|
+
{:should_include=>"true",
|
395
|
+
:description=>nil,
|
396
|
+
:help=>nil,
|
397
|
+
:code_name=>:eplace,
|
398
|
+
:must_pass=>
|
399
|
+
[{:test=>"kind_of? Numeric",
|
400
|
+
:explanation=>
|
401
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
402
|
+
:type=>:Float},
|
403
|
+
:etaei=>
|
404
|
+
{:should_include=>"true",
|
405
|
+
:description=>nil,
|
406
|
+
:help=>nil,
|
407
|
+
:code_name=>:etaei,
|
408
|
+
:must_pass=>
|
409
|
+
[{:test=>"kind_of? Numeric",
|
410
|
+
:explanation=>
|
411
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
412
|
+
:type=>:Float},
|
413
|
+
:ewidth=>
|
414
|
+
{:should_include=>"true",
|
415
|
+
:description=>nil,
|
416
|
+
:help=>nil,
|
417
|
+
:code_name=>:ewidth,
|
418
|
+
:must_pass=>
|
419
|
+
[{:test=>"kind_of? Numeric",
|
420
|
+
:explanation=>
|
421
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
422
|
+
:type=>:Float},
|
423
|
+
:epslon=>
|
424
|
+
{:should_include=>"true",
|
425
|
+
:description=>nil,
|
426
|
+
:help=>nil,
|
427
|
+
:code_name=>:epslon,
|
428
|
+
:must_pass=>
|
429
|
+
[{:test=>"kind_of? Numeric",
|
430
|
+
:explanation=>
|
431
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
432
|
+
:type=>:Float},
|
433
|
+
:gamma=>
|
434
|
+
{:should_include=>"true",
|
435
|
+
:description=>nil,
|
436
|
+
:help=>nil,
|
437
|
+
:code_name=>:gamma,
|
438
|
+
:must_pass=>
|
439
|
+
[{:test=>"kind_of? Numeric",
|
440
|
+
:explanation=>
|
441
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
442
|
+
:type=>:Float},
|
443
|
+
:lambda0=>
|
444
|
+
{:should_include=>"true",
|
445
|
+
:description=>nil,
|
446
|
+
:help=>nil,
|
447
|
+
:code_name=>:lambda0,
|
448
|
+
:must_pass=>
|
449
|
+
[{:test=>"kind_of? Numeric",
|
450
|
+
:explanation=>
|
451
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
452
|
+
:type=>:Float},
|
453
|
+
:pangle=>
|
454
|
+
{:should_include=>"true",
|
455
|
+
:description=>nil,
|
456
|
+
:help=>nil,
|
457
|
+
:code_name=>:pangle,
|
458
|
+
:must_pass=>
|
459
|
+
[{:test=>"kind_of? Numeric",
|
460
|
+
:explanation=>
|
461
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
462
|
+
:type=>:Float},
|
463
|
+
:predge=>
|
464
|
+
{:should_include=>"true",
|
465
|
+
:description=>nil,
|
466
|
+
:help=>nil,
|
467
|
+
:code_name=>:predge,
|
468
|
+
:must_pass=>
|
469
|
+
[{:test=>"kind_of? Numeric",
|
470
|
+
:explanation=>
|
471
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
472
|
+
:type=>:Float},
|
473
|
+
:psiscl=>
|
474
|
+
{:should_include=>"true",
|
475
|
+
:description=>nil,
|
476
|
+
:help=>nil,
|
477
|
+
:code_name=>:psiscl,
|
478
|
+
:must_pass=>
|
479
|
+
[{:test=>"kind_of? Numeric",
|
480
|
+
:explanation=>
|
481
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
482
|
+
:type=>:Float},
|
483
|
+
:qspec=>
|
484
|
+
{:should_include=>"true",
|
485
|
+
:description=>nil,
|
486
|
+
:help=>nil,
|
487
|
+
:code_name=>:qspec,
|
488
|
+
:must_pass=>
|
489
|
+
[{:test=>"kind_of? Numeric",
|
490
|
+
:explanation=>
|
491
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
492
|
+
:type=>:Float},
|
493
|
+
:qplace=>
|
494
|
+
{:should_include=>"true",
|
495
|
+
:description=>nil,
|
496
|
+
:help=>nil,
|
497
|
+
:code_name=>:qplace,
|
498
|
+
:must_pass=>
|
499
|
+
[{:test=>"kind_of? Numeric",
|
500
|
+
:explanation=>
|
501
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
502
|
+
:type=>:Float},
|
503
|
+
:qwidth=>
|
504
|
+
{:should_include=>"true",
|
505
|
+
:description=>nil,
|
506
|
+
:help=>nil,
|
507
|
+
:code_name=>:qwidth,
|
508
|
+
:must_pass=>
|
509
|
+
[{:test=>"kind_of? Numeric",
|
510
|
+
:explanation=>
|
511
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
512
|
+
:type=>:Float},
|
513
|
+
:qvalneo=>
|
514
|
+
{:should_include=>"true",
|
515
|
+
:description=>nil,
|
516
|
+
:help=>nil,
|
517
|
+
:code_name=>:qvalneo,
|
518
|
+
:must_pass=>
|
519
|
+
[{:test=>"kind_of? Numeric",
|
520
|
+
:explanation=>
|
521
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
522
|
+
:type=>:Float},
|
523
|
+
:rboxlen=>
|
524
|
+
{:should_include=>"true",
|
525
|
+
:description=>nil,
|
526
|
+
:help=>nil,
|
527
|
+
:code_name=>:rboxlen,
|
528
|
+
:must_pass=>
|
529
|
+
[{:test=>"kind_of? Numeric",
|
530
|
+
:explanation=>
|
531
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
532
|
+
:type=>:Float},
|
533
|
+
:rboxlft=>
|
534
|
+
{:should_include=>"true",
|
535
|
+
:description=>nil,
|
536
|
+
:help=>nil,
|
537
|
+
:code_name=>:rboxlft,
|
538
|
+
:must_pass=>
|
539
|
+
[{:test=>"kind_of? Numeric",
|
540
|
+
:explanation=>
|
541
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
542
|
+
:type=>:Float},
|
543
|
+
:rc=>
|
544
|
+
{:should_include=>"true",
|
545
|
+
:description=>nil,
|
546
|
+
:help=>nil,
|
547
|
+
:code_name=>:rc,
|
548
|
+
:must_pass=>
|
549
|
+
[{:test=>"kind_of? Numeric",
|
550
|
+
:explanation=>
|
551
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
552
|
+
:type=>:Float},
|
553
|
+
:relax=>
|
554
|
+
{:should_include=>"true",
|
555
|
+
:description=>nil,
|
556
|
+
:help=>nil,
|
557
|
+
:code_name=>:relax,
|
558
|
+
:must_pass=>
|
559
|
+
[{:test=>"kind_of? Numeric",
|
560
|
+
:explanation=>
|
561
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
562
|
+
:type=>:Float},
|
563
|
+
:rext=>
|
564
|
+
{:should_include=>"true",
|
565
|
+
:description=>nil,
|
566
|
+
:help=>nil,
|
567
|
+
:code_name=>:rext,
|
568
|
+
:must_pass=>
|
569
|
+
[{:test=>"kind_of? Numeric",
|
570
|
+
:explanation=>
|
571
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
572
|
+
:type=>:Float},
|
573
|
+
:rnu=>
|
574
|
+
{:should_include=>"true",
|
575
|
+
:description=>nil,
|
576
|
+
:help=>nil,
|
577
|
+
:code_name=>:rnu,
|
578
|
+
:must_pass=>
|
579
|
+
[{:test=>"kind_of? Numeric",
|
580
|
+
:explanation=>
|
581
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
582
|
+
:type=>:Float},
|
583
|
+
:rodabyrod0=>
|
584
|
+
{:should_include=>"true",
|
585
|
+
:description=>nil,
|
586
|
+
:help=>nil,
|
587
|
+
:code_name=>:rodabyrod0,
|
588
|
+
:must_pass=>
|
589
|
+
[{:test=>"kind_of? Numeric",
|
590
|
+
:explanation=>
|
591
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
592
|
+
:type=>:Float},
|
593
|
+
:rpeop=>
|
594
|
+
{:should_include=>"true",
|
595
|
+
:description=>nil,
|
596
|
+
:help=>nil,
|
597
|
+
:code_name=>:rpeop,
|
598
|
+
:must_pass=>
|
599
|
+
[{:test=>"kind_of? Numeric",
|
600
|
+
:explanation=>
|
601
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
602
|
+
:type=>:Float},
|
603
|
+
:rzion=>
|
604
|
+
{:should_include=>"true",
|
605
|
+
:description=>nil,
|
606
|
+
:help=>nil,
|
607
|
+
:code_name=>:rzion,
|
608
|
+
:must_pass=>
|
609
|
+
[{:test=>"kind_of? Numeric",
|
610
|
+
:explanation=>
|
611
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
612
|
+
:type=>:Float},
|
613
|
+
:rz0=>
|
614
|
+
{:should_include=>"true",
|
615
|
+
:description=>nil,
|
616
|
+
:help=>nil,
|
617
|
+
:code_name=>:rz0,
|
618
|
+
:must_pass=>
|
619
|
+
[{:test=>"kind_of? Numeric",
|
620
|
+
:explanation=>
|
621
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
622
|
+
:type=>:Float},
|
623
|
+
:rz0w=>
|
624
|
+
{:should_include=>"true",
|
625
|
+
:description=>nil,
|
626
|
+
:help=>nil,
|
627
|
+
:code_name=>:rz0w,
|
628
|
+
:must_pass=>
|
629
|
+
[{:test=>"kind_of? Numeric",
|
630
|
+
:explanation=>
|
631
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
632
|
+
:type=>:Float},
|
633
|
+
:r0=>
|
634
|
+
{:should_include=>"true",
|
635
|
+
:description=>nil,
|
636
|
+
:help=>nil,
|
637
|
+
:code_name=>:r0,
|
638
|
+
:must_pass=>
|
639
|
+
[{:test=>"kind_of? Numeric",
|
640
|
+
:explanation=>
|
641
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
642
|
+
:type=>:Float},
|
643
|
+
:r0exp=>
|
644
|
+
{:should_include=>"true",
|
645
|
+
:description=>nil,
|
646
|
+
:help=>nil,
|
647
|
+
:code_name=>:r0exp,
|
648
|
+
:must_pass=>
|
649
|
+
[{:test=>"kind_of? Numeric",
|
650
|
+
:explanation=>
|
651
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
652
|
+
:type=>:Float},
|
653
|
+
:r0w=>
|
654
|
+
{:should_include=>"true",
|
655
|
+
:description=>nil,
|
656
|
+
:help=>nil,
|
657
|
+
:code_name=>:r0w,
|
658
|
+
:must_pass=>
|
659
|
+
[{:test=>"kind_of? Numeric",
|
660
|
+
:explanation=>
|
661
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
662
|
+
:type=>:Float},
|
663
|
+
:scalne=>
|
664
|
+
{:should_include=>"true",
|
665
|
+
:description=>nil,
|
666
|
+
:help=>nil,
|
667
|
+
:code_name=>:scalne,
|
668
|
+
:must_pass=>
|
669
|
+
[{:test=>"kind_of? Numeric",
|
670
|
+
:explanation=>
|
671
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
672
|
+
:type=>:Float},
|
673
|
+
:scexp=>
|
674
|
+
{:should_include=>"true",
|
675
|
+
:description=>nil,
|
676
|
+
:help=>nil,
|
677
|
+
:code_name=>:scexp,
|
678
|
+
:must_pass=>
|
679
|
+
[{:test=>"kind_of? Numeric",
|
680
|
+
:explanation=>
|
681
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
682
|
+
:type=>:Float},
|
683
|
+
:sd_vmin=>
|
684
|
+
{:should_include=>"true",
|
685
|
+
:description=>nil,
|
686
|
+
:help=>nil,
|
687
|
+
:code_name=>:sd_vmin,
|
688
|
+
:must_pass=>
|
689
|
+
[{:test=>"kind_of? Numeric",
|
690
|
+
:explanation=>
|
691
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
692
|
+
:type=>:Float},
|
693
|
+
:sd_vmax=>
|
694
|
+
{:should_include=>"true",
|
695
|
+
:description=>nil,
|
696
|
+
:help=>nil,
|
697
|
+
:code_name=>:sd_vmax,
|
698
|
+
:must_pass=>
|
699
|
+
[{:test=>"kind_of? Numeric",
|
700
|
+
:explanation=>
|
701
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
702
|
+
:type=>:Float},
|
703
|
+
:signb0xp=>
|
704
|
+
{:should_include=>"true",
|
705
|
+
:description=>nil,
|
706
|
+
:help=>nil,
|
707
|
+
:code_name=>:signb0xp,
|
708
|
+
:must_pass=>
|
709
|
+
[{:test=>"kind_of? Numeric",
|
710
|
+
:explanation=>
|
711
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
712
|
+
:type=>:Float},
|
713
|
+
:signipxp=>
|
714
|
+
{:should_include=>"true",
|
715
|
+
:description=>nil,
|
716
|
+
:help=>nil,
|
717
|
+
:code_name=>:signipxp,
|
718
|
+
:must_pass=>
|
719
|
+
[{:test=>"kind_of? Numeric",
|
720
|
+
:explanation=>
|
721
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
722
|
+
:type=>:Float},
|
723
|
+
:sgma=>
|
724
|
+
{:should_include=>"true",
|
725
|
+
:description=>nil,
|
726
|
+
:help=>nil,
|
727
|
+
:code_name=>:sgma,
|
728
|
+
:must_pass=>
|
729
|
+
[{:test=>"kind_of? Numeric",
|
730
|
+
:explanation=>
|
731
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
732
|
+
:type=>:Float},
|
733
|
+
:slimit=>
|
734
|
+
{:should_include=>"true",
|
735
|
+
:description=>nil,
|
736
|
+
:help=>nil,
|
737
|
+
:code_name=>:slimit,
|
738
|
+
:must_pass=>
|
739
|
+
[{:test=>"kind_of? Numeric",
|
740
|
+
:explanation=>
|
741
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
742
|
+
:type=>:Float},
|
743
|
+
:snumber=>
|
744
|
+
{:should_include=>"true",
|
745
|
+
:description=>nil,
|
746
|
+
:help=>nil,
|
747
|
+
:code_name=>:snumber,
|
748
|
+
:must_pass=>
|
749
|
+
[{:test=>"kind_of? Numeric",
|
750
|
+
:explanation=>
|
751
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
752
|
+
:type=>:Float},
|
753
|
+
:solpda=>
|
754
|
+
{:should_include=>"true",
|
755
|
+
:description=>nil,
|
756
|
+
:help=>nil,
|
757
|
+
:code_name=>:solpda,
|
758
|
+
:must_pass=>
|
759
|
+
[{:test=>"kind_of? Numeric",
|
760
|
+
:explanation=>
|
761
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
762
|
+
:type=>:Float},
|
763
|
+
:solpdb=>
|
764
|
+
{:should_include=>"true",
|
765
|
+
:description=>nil,
|
766
|
+
:help=>nil,
|
767
|
+
:code_name=>:solpdb,
|
768
|
+
:must_pass=>
|
769
|
+
[{:test=>"kind_of? Numeric",
|
770
|
+
:explanation=>
|
771
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
772
|
+
:type=>:Float},
|
773
|
+
:solpdc=>
|
774
|
+
{:should_include=>"true",
|
775
|
+
:description=>nil,
|
776
|
+
:help=>nil,
|
777
|
+
:code_name=>:solpdc,
|
778
|
+
:must_pass=>
|
779
|
+
[{:test=>"kind_of? Numeric",
|
780
|
+
:explanation=>
|
781
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
782
|
+
:type=>:Float},
|
783
|
+
:solpdd=>
|
784
|
+
{:should_include=>"true",
|
785
|
+
:description=>nil,
|
786
|
+
:help=>nil,
|
787
|
+
:code_name=>:solpdd,
|
788
|
+
:must_pass=>
|
789
|
+
[{:test=>"kind_of? Numeric",
|
790
|
+
:explanation=>
|
791
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
792
|
+
:type=>:Float},
|
793
|
+
:solpde=>
|
794
|
+
{:should_include=>"true",
|
795
|
+
:description=>nil,
|
796
|
+
:help=>nil,
|
797
|
+
:code_name=>:solpde,
|
798
|
+
:must_pass=>
|
799
|
+
[{:test=>"kind_of? Numeric",
|
800
|
+
:explanation=>
|
801
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
802
|
+
:type=>:Float},
|
803
|
+
:spitzer=>
|
804
|
+
{:should_include=>"true",
|
805
|
+
:description=>nil,
|
806
|
+
:help=>nil,
|
807
|
+
:code_name=>:spitzer,
|
808
|
+
:must_pass=>
|
809
|
+
[{:test=>"kind_of? Numeric",
|
810
|
+
:explanation=>
|
811
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
812
|
+
:type=>:Float},
|
813
|
+
:tensprof=>
|
814
|
+
{:should_include=>"true",
|
815
|
+
:description=>nil,
|
816
|
+
:help=>nil,
|
817
|
+
:code_name=>:tensprof,
|
818
|
+
:must_pass=>
|
819
|
+
[{:test=>"kind_of? Numeric",
|
820
|
+
:explanation=>
|
821
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
822
|
+
:type=>:Float},
|
823
|
+
:tensbnd=>
|
824
|
+
{:should_include=>"true",
|
825
|
+
:description=>nil,
|
826
|
+
:help=>nil,
|
827
|
+
:code_name=>:tensbnd,
|
828
|
+
:must_pass=>
|
829
|
+
[{:test=>"kind_of? Numeric",
|
830
|
+
:explanation=>
|
831
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
832
|
+
:type=>:Float},
|
833
|
+
:theta0=>
|
834
|
+
{:should_include=>"true",
|
835
|
+
:description=>nil,
|
836
|
+
:help=>nil,
|
837
|
+
:code_name=>:theta0,
|
838
|
+
:must_pass=>[{:test=>nil, :explanation=>nil}],
|
839
|
+
:type=>nil},
|
840
|
+
:treeitm=>
|
841
|
+
{:should_include=>"true",
|
842
|
+
:description=>nil,
|
843
|
+
:help=>nil,
|
844
|
+
:code_name=>:treeitm,
|
845
|
+
:must_pass=>
|
846
|
+
[{:test=>"kind_of? String",
|
847
|
+
:explanation=>"This variable must be a string."}],
|
848
|
+
:type=>:String},
|
849
|
+
:triang=>
|
850
|
+
{:should_include=>"true",
|
851
|
+
:description=>nil,
|
852
|
+
:help=>nil,
|
853
|
+
:code_name=>:triang,
|
854
|
+
:must_pass=>
|
855
|
+
[{:test=>"kind_of? Numeric",
|
856
|
+
:explanation=>
|
857
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
858
|
+
:type=>:Float},
|
859
|
+
:triplt=>
|
860
|
+
{:should_include=>"true",
|
861
|
+
:description=>nil,
|
862
|
+
:help=>nil,
|
863
|
+
:code_name=>:triplt,
|
864
|
+
:must_pass=>
|
865
|
+
[{:test=>"kind_of? Numeric",
|
866
|
+
:explanation=>
|
867
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
868
|
+
:type=>:Float},
|
869
|
+
:xi=>
|
870
|
+
{:should_include=>"true",
|
871
|
+
:description=>nil,
|
872
|
+
:help=>nil,
|
873
|
+
:code_name=>:xi,
|
874
|
+
:must_pass=>
|
875
|
+
[{:test=>"kind_of? Numeric",
|
876
|
+
:explanation=>
|
877
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
878
|
+
:type=>:Float},
|
879
|
+
:zboxlen=>
|
880
|
+
{:should_include=>"true",
|
881
|
+
:description=>nil,
|
882
|
+
:help=>nil,
|
883
|
+
:code_name=>:zboxlen,
|
884
|
+
:must_pass=>
|
885
|
+
[{:test=>"kind_of? Numeric",
|
886
|
+
:explanation=>
|
887
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
888
|
+
:type=>:Float},
|
889
|
+
:mdt=>
|
890
|
+
{:should_include=>"true",
|
891
|
+
:description=>nil,
|
892
|
+
:help=>nil,
|
893
|
+
:code_name=>:mdt,
|
894
|
+
:must_pass=>
|
895
|
+
[{:test=>"kind_of? Integer",
|
896
|
+
:explanation=>"This variable must be an integer."}],
|
897
|
+
:type=>:Integer},
|
898
|
+
:msmax=>
|
899
|
+
{:should_include=>"true",
|
900
|
+
:description=>nil,
|
901
|
+
:help=>nil,
|
902
|
+
:code_name=>:msmax,
|
903
|
+
:must_pass=>
|
904
|
+
[{:test=>"kind_of? Integer",
|
905
|
+
:explanation=>"This variable must be an integer."}],
|
906
|
+
:type=>:Integer},
|
907
|
+
:nanal=>
|
908
|
+
{:should_include=>"true",
|
909
|
+
:description=>nil,
|
910
|
+
:help=>nil,
|
911
|
+
:code_name=>:nanal,
|
912
|
+
:must_pass=>
|
913
|
+
[{:test=>"kind_of? Integer",
|
914
|
+
:explanation=>"This variable must be an integer."}],
|
915
|
+
:type=>:Integer},
|
916
|
+
:nbal=>
|
917
|
+
{:should_include=>"true",
|
918
|
+
:description=>nil,
|
919
|
+
:help=>nil,
|
920
|
+
:code_name=>:nbal,
|
921
|
+
:must_pass=>
|
922
|
+
[{:test=>"kind_of? Integer",
|
923
|
+
:explanation=>"This variable must be an integer."}],
|
924
|
+
:type=>:Integer},
|
925
|
+
:nblc0=>
|
926
|
+
{:should_include=>"true",
|
927
|
+
:description=>nil,
|
928
|
+
:help=>nil,
|
929
|
+
:code_name=>:nblc0,
|
930
|
+
:must_pass=>
|
931
|
+
[{:test=>"kind_of? Integer",
|
932
|
+
:explanation=>"This variable must be an integer."}],
|
933
|
+
:type=>:Integer},
|
934
|
+
:nblopt=>
|
935
|
+
{:should_include=>"true",
|
936
|
+
:description=>nil,
|
937
|
+
:help=>nil,
|
938
|
+
:code_name=>:nblopt,
|
939
|
+
:must_pass=>
|
940
|
+
[{:test=>"kind_of? Integer",
|
941
|
+
:explanation=>"This variable must be an integer."}],
|
942
|
+
:type=>:Integer},
|
943
|
+
:nbpsout=>
|
944
|
+
{:should_include=>"true",
|
945
|
+
:description=>nil,
|
946
|
+
:help=>nil,
|
947
|
+
:code_name=>:nbpsout,
|
948
|
+
:must_pass=>
|
949
|
+
[{:test=>"kind_of? Integer",
|
950
|
+
:explanation=>"This variable must be an integer."}],
|
951
|
+
:type=>:Integer},
|
952
|
+
:nbsexpq=>
|
953
|
+
{:should_include=>"true",
|
954
|
+
:description=>nil,
|
955
|
+
:help=>nil,
|
956
|
+
:code_name=>:nbsexpq,
|
957
|
+
:must_pass=>
|
958
|
+
[{:test=>"kind_of? Integer",
|
959
|
+
:explanation=>"This variable must be an integer."}],
|
960
|
+
:type=>:Integer},
|
961
|
+
:nbsfun=>
|
962
|
+
{:should_include=>"true",
|
963
|
+
:description=>nil,
|
964
|
+
:help=>nil,
|
965
|
+
:code_name=>:nbsfun,
|
966
|
+
:must_pass=>
|
967
|
+
[{:test=>"kind_of? Integer",
|
968
|
+
:explanation=>"This variable must be an integer."}],
|
969
|
+
:type=>:Integer},
|
970
|
+
:nbsopt=>
|
971
|
+
{:should_include=>"true",
|
972
|
+
:description=>nil,
|
973
|
+
:help=>nil,
|
974
|
+
:code_name=>:nbsopt,
|
975
|
+
:must_pass=>
|
976
|
+
[{:test=>"kind_of? Integer",
|
977
|
+
:explanation=>"This variable must be an integer."}],
|
978
|
+
:type=>:Integer},
|
979
|
+
:nbstrp=>
|
980
|
+
{:should_include=>"true",
|
981
|
+
:description=>nil,
|
982
|
+
:help=>nil,
|
983
|
+
:code_name=>:nbstrp,
|
984
|
+
:must_pass=>
|
985
|
+
[{:test=>"kind_of? Integer",
|
986
|
+
:explanation=>"This variable must be an integer."}],
|
987
|
+
:type=>:Integer},
|
988
|
+
:nchi=>
|
989
|
+
{:should_include=>"true",
|
990
|
+
:description=>nil,
|
991
|
+
:help=>nil,
|
992
|
+
:code_name=>:nchi,
|
993
|
+
:must_pass=>
|
994
|
+
[{:test=>"kind_of? Integer",
|
995
|
+
:explanation=>"This variable must be an integer."}],
|
996
|
+
:type=>:Integer},
|
997
|
+
:ncscal=>
|
998
|
+
{:should_include=>"true",
|
999
|
+
:description=>nil,
|
1000
|
+
:help=>nil,
|
1001
|
+
:code_name=>:ncscal,
|
1002
|
+
:must_pass=>
|
1003
|
+
[{:test=>"kind_of? Integer",
|
1004
|
+
:explanation=>"This variable must be an integer."}],
|
1005
|
+
:type=>:Integer},
|
1006
|
+
:ndiagop=>
|
1007
|
+
{:should_include=>"true",
|
1008
|
+
:description=>nil,
|
1009
|
+
:help=>nil,
|
1010
|
+
:code_name=>:ndiagop,
|
1011
|
+
:must_pass=>
|
1012
|
+
[{:test=>"kind_of? Integer",
|
1013
|
+
:explanation=>"This variable must be an integer."}],
|
1014
|
+
:type=>:Integer},
|
1015
|
+
:ndifps=>
|
1016
|
+
{:should_include=>"true",
|
1017
|
+
:description=>nil,
|
1018
|
+
:help=>nil,
|
1019
|
+
:code_name=>:ndifps,
|
1020
|
+
:must_pass=>
|
1021
|
+
[{:test=>"kind_of? Integer",
|
1022
|
+
:explanation=>"This variable must be an integer."}],
|
1023
|
+
:type=>:Integer},
|
1024
|
+
:ndift=>
|
1025
|
+
{:should_include=>"true",
|
1026
|
+
:description=>nil,
|
1027
|
+
:help=>nil,
|
1028
|
+
:code_name=>:ndift,
|
1029
|
+
:must_pass=>
|
1030
|
+
[{:test=>"kind_of? Integer",
|
1031
|
+
:explanation=>"This variable must be an integer."}],
|
1032
|
+
:type=>:Integer},
|
1033
|
+
:negp=>
|
1034
|
+
{:should_include=>"true",
|
1035
|
+
:description=>nil,
|
1036
|
+
:help=>nil,
|
1037
|
+
:code_name=>:negp,
|
1038
|
+
:must_pass=>
|
1039
|
+
[{:test=>"kind_of? Integer",
|
1040
|
+
:explanation=>"This variable must be an integer."}],
|
1041
|
+
:type=>:Integer},
|
1042
|
+
:neonbqs=>
|
1043
|
+
{:should_include=>"true",
|
1044
|
+
:description=>nil,
|
1045
|
+
:help=>nil,
|
1046
|
+
:code_name=>:neonbqs,
|
1047
|
+
:must_pass=>
|
1048
|
+
[{:test=>"kind_of? Integer",
|
1049
|
+
:explanation=>"This variable must be an integer."}],
|
1050
|
+
:type=>:Integer},
|
1051
|
+
:neqdsk=>
|
1052
|
+
{:should_include=>"true",
|
1053
|
+
:description=>nil,
|
1054
|
+
:help=>nil,
|
1055
|
+
:code_name=>:neqdsk,
|
1056
|
+
:must_pass=>
|
1057
|
+
[{:test=>"kind_of? Integer",
|
1058
|
+
:explanation=>"This variable must be an integer."}],
|
1059
|
+
:type=>:Integer},
|
1060
|
+
:ner=>
|
1061
|
+
{:should_include=>"true",
|
1062
|
+
:description=>nil,
|
1063
|
+
:help=>nil,
|
1064
|
+
:code_name=>:ner,
|
1065
|
+
:must_pass=>
|
1066
|
+
[{:test=>"kind_of? Integer",
|
1067
|
+
:explanation=>"This variable must be an integer."}],
|
1068
|
+
:type=>:Integer},
|
1069
|
+
:nitmopt=>
|
1070
|
+
{:should_include=>"true",
|
1071
|
+
:description=>nil,
|
1072
|
+
:help=>nil,
|
1073
|
+
:code_name=>:nitmopt,
|
1074
|
+
:must_pass=>
|
1075
|
+
[{:test=>"kind_of? Integer",
|
1076
|
+
:explanation=>"This variable must be an integer."}],
|
1077
|
+
:type=>:Integer},
|
1078
|
+
:nitmrun=>
|
1079
|
+
{:should_include=>"true",
|
1080
|
+
:description=>nil,
|
1081
|
+
:help=>nil,
|
1082
|
+
:code_name=>:nitmrun,
|
1083
|
+
:must_pass=>
|
1084
|
+
[{:test=>"kind_of? Integer",
|
1085
|
+
:explanation=>"This variable must be an integer."}],
|
1086
|
+
:type=>:Integer},
|
1087
|
+
:nitmshot=>
|
1088
|
+
{:should_include=>"true",
|
1089
|
+
:description=>nil,
|
1090
|
+
:help=>nil,
|
1091
|
+
:code_name=>:nitmshot,
|
1092
|
+
:must_pass=>
|
1093
|
+
[{:test=>"kind_of? Integer",
|
1094
|
+
:explanation=>"This variable must be an integer."}],
|
1095
|
+
:type=>:Integer},
|
1096
|
+
:nfftopt=>
|
1097
|
+
{:should_include=>"true",
|
1098
|
+
:description=>nil,
|
1099
|
+
:help=>nil,
|
1100
|
+
:code_name=>:nfftopt,
|
1101
|
+
:must_pass=>
|
1102
|
+
[{:test=>"kind_of? Integer",
|
1103
|
+
:explanation=>"This variable must be an integer."}],
|
1104
|
+
:type=>:Integer},
|
1105
|
+
:nfunc=>
|
1106
|
+
{:should_include=>"true",
|
1107
|
+
:description=>nil,
|
1108
|
+
:help=>nil,
|
1109
|
+
:code_name=>:nfunc,
|
1110
|
+
:must_pass=>
|
1111
|
+
[{:test=>"kind_of? Integer",
|
1112
|
+
:explanation=>"This variable must be an integer."}],
|
1113
|
+
:type=>:Integer},
|
1114
|
+
:nfunrho=>
|
1115
|
+
{:should_include=>"true",
|
1116
|
+
:description=>nil,
|
1117
|
+
:help=>nil,
|
1118
|
+
:code_name=>:nfunrho,
|
1119
|
+
:must_pass=>
|
1120
|
+
[{:test=>"kind_of? Integer",
|
1121
|
+
:explanation=>"This variable must be an integer."}],
|
1122
|
+
:type=>:Integer},
|
1123
|
+
:nideal=>
|
1124
|
+
{:should_include=>"true",
|
1125
|
+
:description=>nil,
|
1126
|
+
:help=>nil,
|
1127
|
+
:code_name=>:nideal,
|
1128
|
+
:must_pass=>
|
1129
|
+
[{:test=>"kind_of? Integer",
|
1130
|
+
:explanation=>"This variable must be an integer."}],
|
1131
|
+
:type=>:Integer},
|
1132
|
+
:ninmap=>
|
1133
|
+
{:should_include=>"true",
|
1134
|
+
:description=>nil,
|
1135
|
+
:help=>nil,
|
1136
|
+
:code_name=>:ninmap,
|
1137
|
+
:must_pass=>
|
1138
|
+
[{:test=>"kind_of? Integer",
|
1139
|
+
:explanation=>"This variable must be an integer."}],
|
1140
|
+
:type=>:Integer},
|
1141
|
+
:ninsca=>
|
1142
|
+
{:should_include=>"true",
|
1143
|
+
:description=>nil,
|
1144
|
+
:help=>nil,
|
1145
|
+
:code_name=>:ninsca,
|
1146
|
+
:must_pass=>
|
1147
|
+
[{:test=>"kind_of? Integer",
|
1148
|
+
:explanation=>"This variable must be an integer."}],
|
1149
|
+
:type=>:Integer},
|
1150
|
+
:nipr=>
|
1151
|
+
{:should_include=>"true",
|
1152
|
+
:description=>nil,
|
1153
|
+
:help=>nil,
|
1154
|
+
:code_name=>:nipr,
|
1155
|
+
:must_pass=>
|
1156
|
+
[{:test=>"kind_of? Integer",
|
1157
|
+
:explanation=>"This variable must be an integer."}],
|
1158
|
+
:type=>:Integer},
|
1159
|
+
:niso=>
|
1160
|
+
{:should_include=>"true",
|
1161
|
+
:description=>nil,
|
1162
|
+
:help=>nil,
|
1163
|
+
:code_name=>:niso,
|
1164
|
+
:must_pass=>
|
1165
|
+
[{:test=>"kind_of? Integer",
|
1166
|
+
:explanation=>"This variable must be an integer."}],
|
1167
|
+
:type=>:Integer},
|
1168
|
+
:nmesha=>
|
1169
|
+
{:should_include=>"true",
|
1170
|
+
:description=>nil,
|
1171
|
+
:help=>nil,
|
1172
|
+
:code_name=>:nmesha,
|
1173
|
+
:must_pass=>
|
1174
|
+
[{:test=>"kind_of? Integer",
|
1175
|
+
:explanation=>"This variable must be an integer."}],
|
1176
|
+
:type=>:Integer},
|
1177
|
+
:nmeshb=>
|
1178
|
+
{:should_include=>"true",
|
1179
|
+
:description=>nil,
|
1180
|
+
:help=>nil,
|
1181
|
+
:code_name=>:nmeshb,
|
1182
|
+
:must_pass=>
|
1183
|
+
[{:test=>"kind_of? Integer",
|
1184
|
+
:explanation=>"This variable must be an integer."}],
|
1185
|
+
:type=>:Integer},
|
1186
|
+
:nmeshc=>
|
1187
|
+
{:should_include=>"true",
|
1188
|
+
:description=>nil,
|
1189
|
+
:help=>nil,
|
1190
|
+
:code_name=>:nmeshc,
|
1191
|
+
:must_pass=>
|
1192
|
+
[{:test=>"kind_of? Integer",
|
1193
|
+
:explanation=>"This variable must be an integer."}],
|
1194
|
+
:type=>:Integer},
|
1195
|
+
:nmeshd=>
|
1196
|
+
{:should_include=>"true",
|
1197
|
+
:description=>nil,
|
1198
|
+
:help=>nil,
|
1199
|
+
:code_name=>:nmeshd,
|
1200
|
+
:must_pass=>
|
1201
|
+
[{:test=>"kind_of? Integer",
|
1202
|
+
:explanation=>"This variable must be an integer."}],
|
1203
|
+
:type=>:Integer},
|
1204
|
+
:nmeshe=>
|
1205
|
+
{:should_include=>"true",
|
1206
|
+
:description=>nil,
|
1207
|
+
:help=>nil,
|
1208
|
+
:code_name=>:nmeshe,
|
1209
|
+
:must_pass=>
|
1210
|
+
[{:test=>"kind_of? Integer",
|
1211
|
+
:explanation=>"This variable must be an integer."}],
|
1212
|
+
:type=>:Integer},
|
1213
|
+
:nmgaus=>
|
1214
|
+
{:should_include=>"true",
|
1215
|
+
:description=>nil,
|
1216
|
+
:help=>nil,
|
1217
|
+
:code_name=>:nmgaus,
|
1218
|
+
:must_pass=>
|
1219
|
+
[{:test=>"kind_of? Integer",
|
1220
|
+
:explanation=>"This variable must be an integer."}],
|
1221
|
+
:type=>:Integer},
|
1222
|
+
:nopt=>
|
1223
|
+
{:should_include=>"true",
|
1224
|
+
:description=>nil,
|
1225
|
+
:help=>nil,
|
1226
|
+
:code_name=>:nopt,
|
1227
|
+
:must_pass=>
|
1228
|
+
[{:test=>"kind_of? Integer",
|
1229
|
+
:explanation=>"This variable must be an integer."}],
|
1230
|
+
:type=>:Integer},
|
1231
|
+
:noutxtor=>
|
1232
|
+
{:should_include=>"true",
|
1233
|
+
:description=>nil,
|
1234
|
+
:help=>nil,
|
1235
|
+
:code_name=>:noutxtor,
|
1236
|
+
:must_pass=>
|
1237
|
+
[{:test=>"kind_of? Integer",
|
1238
|
+
:explanation=>"This variable must be an integer."}],
|
1239
|
+
:type=>:Integer},
|
1240
|
+
:nplot=>
|
1241
|
+
{:should_include=>"true",
|
1242
|
+
:description=>nil,
|
1243
|
+
:help=>nil,
|
1244
|
+
:code_name=>:nplot,
|
1245
|
+
:must_pass=>
|
1246
|
+
[{:test=>"kind_of? Integer",
|
1247
|
+
:explanation=>"This variable must be an integer."}],
|
1248
|
+
:type=>:Integer},
|
1249
|
+
:npoida=>
|
1250
|
+
{:should_include=>"true",
|
1251
|
+
:description=>nil,
|
1252
|
+
:help=>nil,
|
1253
|
+
:code_name=>:npoida,
|
1254
|
+
:must_pass=>
|
1255
|
+
[{:test=>"kind_of? Integer",
|
1256
|
+
:explanation=>"This variable must be an integer."}],
|
1257
|
+
:type=>:Integer},
|
1258
|
+
:npoidb=>
|
1259
|
+
{:should_include=>"true",
|
1260
|
+
:description=>nil,
|
1261
|
+
:help=>nil,
|
1262
|
+
:code_name=>:npoidb,
|
1263
|
+
:must_pass=>
|
1264
|
+
[{:test=>"kind_of? Integer",
|
1265
|
+
:explanation=>"This variable must be an integer."}],
|
1266
|
+
:type=>:Integer},
|
1267
|
+
:npoidc=>
|
1268
|
+
{:should_include=>"true",
|
1269
|
+
:description=>nil,
|
1270
|
+
:help=>nil,
|
1271
|
+
:code_name=>:npoidc,
|
1272
|
+
:must_pass=>
|
1273
|
+
[{:test=>"kind_of? Integer",
|
1274
|
+
:explanation=>"This variable must be an integer."}],
|
1275
|
+
:type=>:Integer},
|
1276
|
+
:npoidd=>
|
1277
|
+
{:should_include=>"true",
|
1278
|
+
:description=>nil,
|
1279
|
+
:help=>nil,
|
1280
|
+
:code_name=>:npoidd,
|
1281
|
+
:must_pass=>
|
1282
|
+
[{:test=>"kind_of? Integer",
|
1283
|
+
:explanation=>"This variable must be an integer."}],
|
1284
|
+
:type=>:Integer},
|
1285
|
+
:npoide=>
|
1286
|
+
{:should_include=>"true",
|
1287
|
+
:description=>nil,
|
1288
|
+
:help=>nil,
|
1289
|
+
:code_name=>:npoide,
|
1290
|
+
:must_pass=>
|
1291
|
+
[{:test=>"kind_of? Integer",
|
1292
|
+
:explanation=>"This variable must be an integer."}],
|
1293
|
+
:type=>:Integer},
|
1294
|
+
:npopulations=>
|
1295
|
+
{:should_include=>"true",
|
1296
|
+
:description=>nil,
|
1297
|
+
:help=>nil,
|
1298
|
+
:code_name=>:npopulations,
|
1299
|
+
:must_pass=>
|
1300
|
+
[{:test=>"kind_of? Integer",
|
1301
|
+
:explanation=>"This variable must be an integer."}],
|
1302
|
+
:type=>:Integer},
|
1303
|
+
:npoidq=>
|
1304
|
+
{:should_include=>"true",
|
1305
|
+
:description=>nil,
|
1306
|
+
:help=>nil,
|
1307
|
+
:code_name=>:npoidq,
|
1308
|
+
:must_pass=>
|
1309
|
+
[{:test=>"kind_of? Integer",
|
1310
|
+
:explanation=>"This variable must be an integer."}],
|
1311
|
+
:type=>:Integer},
|
1312
|
+
:npp=>
|
1313
|
+
{:should_include=>"true",
|
1314
|
+
:description=>nil,
|
1315
|
+
:help=>nil,
|
1316
|
+
:code_name=>:npp,
|
1317
|
+
:must_pass=>
|
1318
|
+
[{:test=>"kind_of? Integer",
|
1319
|
+
:explanation=>"This variable must be an integer."}],
|
1320
|
+
:type=>:Integer},
|
1321
|
+
:nppfun=>
|
1322
|
+
{:should_include=>"true",
|
1323
|
+
:description=>nil,
|
1324
|
+
:help=>nil,
|
1325
|
+
:code_name=>:nppfun,
|
1326
|
+
:must_pass=>
|
1327
|
+
[{:test=>"kind_of? Integer",
|
1328
|
+
:explanation=>"This variable must be an integer."}],
|
1329
|
+
:type=>:Integer},
|
1330
|
+
:nppr=>
|
1331
|
+
{:should_include=>"true",
|
1332
|
+
:description=>nil,
|
1333
|
+
:help=>nil,
|
1334
|
+
:code_name=>:nppr,
|
1335
|
+
:must_pass=>
|
1336
|
+
[{:test=>"kind_of? Integer",
|
1337
|
+
:explanation=>"This variable must be an integer."}],
|
1338
|
+
:type=>:Integer},
|
1339
|
+
:nprofz=>
|
1340
|
+
{:should_include=>"true",
|
1341
|
+
:description=>nil,
|
1342
|
+
:help=>nil,
|
1343
|
+
:code_name=>:nprofz,
|
1344
|
+
:must_pass=>
|
1345
|
+
[{:test=>"kind_of? Integer",
|
1346
|
+
:explanation=>"This variable must be an integer."}],
|
1347
|
+
:type=>:Integer},
|
1348
|
+
:npropt=>
|
1349
|
+
{:should_include=>"true",
|
1350
|
+
:description=>nil,
|
1351
|
+
:help=>nil,
|
1352
|
+
:code_name=>:npropt,
|
1353
|
+
:must_pass=>
|
1354
|
+
[{:test=>"kind_of? Integer",
|
1355
|
+
:explanation=>"This variable must be an integer."}],
|
1356
|
+
:type=>:Integer},
|
1357
|
+
:nprpsi=>
|
1358
|
+
{:should_include=>"true",
|
1359
|
+
:description=>nil,
|
1360
|
+
:help=>nil,
|
1361
|
+
:code_name=>:nprpsi,
|
1362
|
+
:must_pass=>
|
1363
|
+
[{:test=>"kind_of? Integer",
|
1364
|
+
:explanation=>"This variable must be an integer."}],
|
1365
|
+
:type=>:Integer},
|
1366
|
+
:npsi=>
|
1367
|
+
{:should_include=>"true",
|
1368
|
+
:description=>nil,
|
1369
|
+
:help=>nil,
|
1370
|
+
:code_name=>:npsi,
|
1371
|
+
:must_pass=>
|
1372
|
+
[{:test=>"kind_of? Integer",
|
1373
|
+
:explanation=>"This variable must be an integer."}],
|
1374
|
+
:type=>:Integer},
|
1375
|
+
:nrbox=>
|
1376
|
+
{:should_include=>"true",
|
1377
|
+
:description=>nil,
|
1378
|
+
:help=>nil,
|
1379
|
+
:code_name=>:nrbox,
|
1380
|
+
:must_pass=>
|
1381
|
+
[{:test=>"kind_of? Integer",
|
1382
|
+
:explanation=>"This variable must be an integer."}],
|
1383
|
+
:type=>:Integer},
|
1384
|
+
:nrbox_xtor=>
|
1385
|
+
{:should_include=>"true",
|
1386
|
+
:description=>nil,
|
1387
|
+
:help=>nil,
|
1388
|
+
:code_name=>:nrbox_xtor,
|
1389
|
+
:must_pass=>
|
1390
|
+
[{:test=>"kind_of? Integer",
|
1391
|
+
:explanation=>"This variable must be an integer."}],
|
1392
|
+
:type=>:Integer},
|
1393
|
+
:nrfp=>
|
1394
|
+
{:should_include=>"true",
|
1395
|
+
:description=>nil,
|
1396
|
+
:help=>nil,
|
1397
|
+
:code_name=>:nrfp,
|
1398
|
+
:must_pass=>
|
1399
|
+
[{:test=>"kind_of? Integer",
|
1400
|
+
:explanation=>"This variable must be an integer."}],
|
1401
|
+
:type=>:Integer},
|
1402
|
+
:nrscal=>
|
1403
|
+
{:should_include=>"true",
|
1404
|
+
:description=>nil,
|
1405
|
+
:help=>nil,
|
1406
|
+
:code_name=>:nrscal,
|
1407
|
+
:must_pass=>
|
1408
|
+
[{:test=>"kind_of? Integer",
|
1409
|
+
:explanation=>"This variable must be an integer."}],
|
1410
|
+
:type=>:Integer},
|
1411
|
+
:ns=>
|
1412
|
+
{:should_include=>"true",
|
1413
|
+
:description=>nil,
|
1414
|
+
:help=>nil,
|
1415
|
+
:code_name=>:ns,
|
1416
|
+
:must_pass=>
|
1417
|
+
[{:test=>"kind_of? Integer",
|
1418
|
+
:explanation=>"This variable must be an integer."}],
|
1419
|
+
:type=>:Integer},
|
1420
|
+
:nsgaus=>
|
1421
|
+
{:should_include=>"true",
|
1422
|
+
:description=>nil,
|
1423
|
+
:help=>nil,
|
1424
|
+
:code_name=>:nsgaus,
|
1425
|
+
:must_pass=>
|
1426
|
+
[{:test=>"kind_of? Integer",
|
1427
|
+
:explanation=>"This variable must be an integer."}],
|
1428
|
+
:type=>:Integer},
|
1429
|
+
:nsmooth=>
|
1430
|
+
{:should_include=>"true",
|
1431
|
+
:description=>nil,
|
1432
|
+
:help=>nil,
|
1433
|
+
:code_name=>:nsmooth,
|
1434
|
+
:must_pass=>
|
1435
|
+
[{:test=>"kind_of? Integer",
|
1436
|
+
:explanation=>"This variable must be an integer."}],
|
1437
|
+
:type=>:Integer},
|
1438
|
+
:nsour=>
|
1439
|
+
{:should_include=>"true",
|
1440
|
+
:description=>nil,
|
1441
|
+
:help=>nil,
|
1442
|
+
:code_name=>:nsour,
|
1443
|
+
:must_pass=>
|
1444
|
+
[{:test=>"kind_of? Integer",
|
1445
|
+
:explanation=>"This variable must be an integer."}],
|
1446
|
+
:type=>:Integer},
|
1447
|
+
:nsttp=>
|
1448
|
+
{:should_include=>"true",
|
1449
|
+
:description=>nil,
|
1450
|
+
:help=>nil,
|
1451
|
+
:code_name=>:nsttp,
|
1452
|
+
:must_pass=>
|
1453
|
+
[{:test=>"kind_of? Integer",
|
1454
|
+
:explanation=>"This variable must be an integer."}],
|
1455
|
+
:type=>:Integer},
|
1456
|
+
:nsurf=>
|
1457
|
+
{:should_include=>"true",
|
1458
|
+
:description=>nil,
|
1459
|
+
:help=>nil,
|
1460
|
+
:code_name=>:nsurf,
|
1461
|
+
:must_pass=>
|
1462
|
+
[{:test=>"kind_of? Integer",
|
1463
|
+
:explanation=>"This variable must be an integer."}],
|
1464
|
+
:type=>:Integer},
|
1465
|
+
:nsym=>
|
1466
|
+
{:should_include=>"true",
|
1467
|
+
:description=>nil,
|
1468
|
+
:help=>nil,
|
1469
|
+
:code_name=>:nsym,
|
1470
|
+
:must_pass=>
|
1471
|
+
[{:test=>"kind_of? Integer",
|
1472
|
+
:explanation=>"This variable must be an integer."}],
|
1473
|
+
:type=>:Integer},
|
1474
|
+
:nt=>
|
1475
|
+
{:should_include=>"true",
|
1476
|
+
:description=>nil,
|
1477
|
+
:help=>nil,
|
1478
|
+
:code_name=>:nt,
|
1479
|
+
:must_pass=>
|
1480
|
+
[{:test=>"kind_of? Integer",
|
1481
|
+
:explanation=>"This variable must be an integer."}],
|
1482
|
+
:type=>:Integer},
|
1483
|
+
:ntcase=>
|
1484
|
+
{:should_include=>"true",
|
1485
|
+
:description=>nil,
|
1486
|
+
:help=>nil,
|
1487
|
+
:code_name=>:ntcase,
|
1488
|
+
:must_pass=>
|
1489
|
+
[{:test=>"kind_of? Integer",
|
1490
|
+
:explanation=>"This variable must be an integer."}],
|
1491
|
+
:type=>:Integer},
|
1492
|
+
:ntgaus=>
|
1493
|
+
{:should_include=>"true",
|
1494
|
+
:description=>nil,
|
1495
|
+
:help=>nil,
|
1496
|
+
:code_name=>:ntgaus,
|
1497
|
+
:must_pass=>
|
1498
|
+
[{:test=>"kind_of? Integer",
|
1499
|
+
:explanation=>"This variable must be an integer."}],
|
1500
|
+
:type=>:Integer},
|
1501
|
+
:ntest=>
|
1502
|
+
{:should_include=>"true",
|
1503
|
+
:description=>nil,
|
1504
|
+
:help=>nil,
|
1505
|
+
:code_name=>:ntest,
|
1506
|
+
:must_pass=>
|
1507
|
+
[{:test=>"kind_of? Integer",
|
1508
|
+
:explanation=>"This variable must be an integer."}],
|
1509
|
+
:type=>:Integer},
|
1510
|
+
:ntmf0=>
|
1511
|
+
{:should_include=>"true",
|
1512
|
+
:description=>nil,
|
1513
|
+
:help=>nil,
|
1514
|
+
:code_name=>:ntmf0,
|
1515
|
+
:must_pass=>
|
1516
|
+
[{:test=>"kind_of? Integer",
|
1517
|
+
:explanation=>"This variable must be an integer."}],
|
1518
|
+
:type=>:Integer},
|
1519
|
+
:ntnova=>
|
1520
|
+
{:should_include=>"true",
|
1521
|
+
:description=>nil,
|
1522
|
+
:help=>nil,
|
1523
|
+
:code_name=>:ntnova,
|
1524
|
+
:must_pass=>
|
1525
|
+
[{:test=>"kind_of? Integer",
|
1526
|
+
:explanation=>"This variable must be an integer."}],
|
1527
|
+
:type=>:Integer},
|
1528
|
+
:nturn=>
|
1529
|
+
{:should_include=>"true",
|
1530
|
+
:description=>nil,
|
1531
|
+
:help=>nil,
|
1532
|
+
:code_name=>:nturn,
|
1533
|
+
:must_pass=>
|
1534
|
+
[{:test=>"kind_of? Integer",
|
1535
|
+
:explanation=>"This variable must be an integer."}],
|
1536
|
+
:type=>:Integer},
|
1537
|
+
:nv=>
|
1538
|
+
{:should_include=>"true",
|
1539
|
+
:description=>nil,
|
1540
|
+
:help=>nil,
|
1541
|
+
:code_name=>:nv,
|
1542
|
+
:must_pass=>
|
1543
|
+
[{:test=>"kind_of? Integer",
|
1544
|
+
:explanation=>"This variable must be an integer."}],
|
1545
|
+
:type=>:Integer},
|
1546
|
+
:nvexp=>
|
1547
|
+
{:should_include=>"true",
|
1548
|
+
:description=>nil,
|
1549
|
+
:help=>nil,
|
1550
|
+
:code_name=>:nvexp,
|
1551
|
+
:must_pass=>
|
1552
|
+
[{:test=>"kind_of? Integer",
|
1553
|
+
:explanation=>"This variable must be an integer."}],
|
1554
|
+
:type=>:Integer},
|
1555
|
+
:nzbox=>
|
1556
|
+
{:should_include=>"true",
|
1557
|
+
:description=>nil,
|
1558
|
+
:help=>nil,
|
1559
|
+
:code_name=>:nzbox,
|
1560
|
+
:must_pass=>
|
1561
|
+
[{:test=>"kind_of? Integer",
|
1562
|
+
:explanation=>"This variable must be an integer."}],
|
1563
|
+
:type=>:Integer},
|
1564
|
+
:nzbox_xtor=>
|
1565
|
+
{:should_include=>"true",
|
1566
|
+
:description=>nil,
|
1567
|
+
:help=>nil,
|
1568
|
+
:code_name=>:nzbox_xtor,
|
1569
|
+
:must_pass=>
|
1570
|
+
[{:test=>"kind_of? Integer",
|
1571
|
+
:explanation=>"This variable must be an integer."}],
|
1572
|
+
:type=>:Integer},
|
1573
|
+
:neqdxtpo=>
|
1574
|
+
{:should_include=>"true",
|
1575
|
+
:description=>nil,
|
1576
|
+
:help=>nil,
|
1577
|
+
:code_name=>:neqdxtpo,
|
1578
|
+
:must_pass=>
|
1579
|
+
[{:test=>"kind_of? Integer",
|
1580
|
+
:explanation=>"This variable must be an integer."}],
|
1581
|
+
:type=>:Integer},
|
1582
|
+
:nverbose=>
|
1583
|
+
{:should_include=>"true",
|
1584
|
+
:description=>nil,
|
1585
|
+
:help=>nil,
|
1586
|
+
:code_name=>:nverbose,
|
1587
|
+
:must_pass=>
|
1588
|
+
[{:test=>"kind_of? Integer",
|
1589
|
+
:explanation=>"This variable must be an integer."}],
|
1590
|
+
:type=>:Integer},
|
1591
|
+
:comments=>
|
1592
|
+
{:should_include=>"true",
|
1593
|
+
:description=>nil,
|
1594
|
+
:help=>nil,
|
1595
|
+
:code_name=>:comments,
|
1596
|
+
:must_pass=>
|
1597
|
+
[{:test=>"kind_of? String",
|
1598
|
+
:explanation=>"This variable must be a string."}],
|
1599
|
+
:type=>:String}}},
|
1600
|
+
:newrun=>
|
1601
|
+
{:description=>"",
|
1602
|
+
:should_include=>"true",
|
1603
|
+
:variables=>
|
1604
|
+
{:al0=>
|
1605
|
+
{:should_include=>"true",
|
1606
|
+
:description=>nil,
|
1607
|
+
:help=>nil,
|
1608
|
+
:code_name=>:al0,
|
1609
|
+
:must_pass=>
|
1610
|
+
[{:test=>"kind_of? Numeric",
|
1611
|
+
:explanation=>
|
1612
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1613
|
+
:type=>:Float},
|
1614
|
+
:angle=>
|
1615
|
+
{:should_include=>"true",
|
1616
|
+
:description=>nil,
|
1617
|
+
:help=>nil,
|
1618
|
+
:code_name=>:angle,
|
1619
|
+
:must_pass=>
|
1620
|
+
[{:test=>"kind_of? Numeric",
|
1621
|
+
:explanation=>
|
1622
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1623
|
+
:type=>:Float},
|
1624
|
+
:arrow=>
|
1625
|
+
{:should_include=>"true",
|
1626
|
+
:description=>nil,
|
1627
|
+
:help=>nil,
|
1628
|
+
:code_name=>:arrow,
|
1629
|
+
:must_pass=>
|
1630
|
+
[{:test=>"kind_of? Numeric",
|
1631
|
+
:explanation=>
|
1632
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1633
|
+
:type=>:Float},
|
1634
|
+
:beta=>
|
1635
|
+
{:should_include=>"true",
|
1636
|
+
:description=>nil,
|
1637
|
+
:help=>nil,
|
1638
|
+
:code_name=>:beta,
|
1639
|
+
:must_pass=>
|
1640
|
+
[{:test=>"kind_of? Numeric",
|
1641
|
+
:explanation=>
|
1642
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1643
|
+
:type=>:Float},
|
1644
|
+
:betap=>
|
1645
|
+
{:should_include=>"true",
|
1646
|
+
:description=>nil,
|
1647
|
+
:help=>nil,
|
1648
|
+
:code_name=>:betap,
|
1649
|
+
:must_pass=>
|
1650
|
+
[{:test=>"kind_of? Numeric",
|
1651
|
+
:explanation=>
|
1652
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1653
|
+
:type=>:Float},
|
1654
|
+
:cpsrf=>
|
1655
|
+
{:should_include=>"true",
|
1656
|
+
:description=>nil,
|
1657
|
+
:help=>nil,
|
1658
|
+
:code_name=>:cpsrf,
|
1659
|
+
:must_pass=>
|
1660
|
+
[{:test=>"kind_of? Numeric",
|
1661
|
+
:explanation=>
|
1662
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1663
|
+
:type=>:Float},
|
1664
|
+
:epscon=>
|
1665
|
+
{:should_include=>"true",
|
1666
|
+
:description=>nil,
|
1667
|
+
:help=>nil,
|
1668
|
+
:code_name=>:epscon,
|
1669
|
+
:must_pass=>
|
1670
|
+
[{:test=>"kind_of? Numeric",
|
1671
|
+
:explanation=>
|
1672
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1673
|
+
:type=>:Float},
|
1674
|
+
:epsmac=>
|
1675
|
+
{:should_include=>"true",
|
1676
|
+
:description=>nil,
|
1677
|
+
:help=>nil,
|
1678
|
+
:code_name=>:epsmac,
|
1679
|
+
:must_pass=>
|
1680
|
+
[{:test=>"kind_of? String",
|
1681
|
+
:explanation=>"This variable must be a string."}],
|
1682
|
+
:type=>:String},
|
1683
|
+
:qiaxe=>
|
1684
|
+
{:should_include=>"true",
|
1685
|
+
:description=>nil,
|
1686
|
+
:help=>nil,
|
1687
|
+
:code_name=>:qiaxe,
|
1688
|
+
:must_pass=>[{:test=>nil, :explanation=>nil}],
|
1689
|
+
:type=>nil},
|
1690
|
+
:qsurf=>
|
1691
|
+
{:should_include=>"true",
|
1692
|
+
:description=>nil,
|
1693
|
+
:help=>nil,
|
1694
|
+
:code_name=>:qsurf,
|
1695
|
+
:must_pass=>
|
1696
|
+
[{:test=>"kind_of? String",
|
1697
|
+
:explanation=>"This variable must be a string."}],
|
1698
|
+
:type=>:String},
|
1699
|
+
:rext_new=>
|
1700
|
+
{:should_include=>"true",
|
1701
|
+
:description=>nil,
|
1702
|
+
:help=>nil,
|
1703
|
+
:code_name=>:rext,
|
1704
|
+
:must_pass=>
|
1705
|
+
[{:test=>"kind_of? Numeric",
|
1706
|
+
:explanation=>
|
1707
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1708
|
+
:type=>:Float},
|
1709
|
+
:ritot=>
|
1710
|
+
{:should_include=>"true",
|
1711
|
+
:description=>nil,
|
1712
|
+
:help=>nil,
|
1713
|
+
:code_name=>:ritot,
|
1714
|
+
:must_pass=>
|
1715
|
+
[{:test=>"kind_of? Numeric",
|
1716
|
+
:explanation=>
|
1717
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1718
|
+
:type=>:Float},
|
1719
|
+
:tsurf=>
|
1720
|
+
{:should_include=>"true",
|
1721
|
+
:description=>nil,
|
1722
|
+
:help=>nil,
|
1723
|
+
:code_name=>:tsurf,
|
1724
|
+
:must_pass=>
|
1725
|
+
[{:test=>"kind_of? String",
|
1726
|
+
:explanation=>"This variable must be a string."}],
|
1727
|
+
:type=>:String},
|
1728
|
+
:wntore=>
|
1729
|
+
{:should_include=>"true",
|
1730
|
+
:description=>nil,
|
1731
|
+
:help=>nil,
|
1732
|
+
:code_name=>:wntore,
|
1733
|
+
:must_pass=>
|
1734
|
+
[{:test=>"kind_of? Numeric",
|
1735
|
+
:explanation=>
|
1736
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1737
|
+
:type=>:Float},
|
1738
|
+
:wall=>
|
1739
|
+
{:should_include=>"true",
|
1740
|
+
:description=>nil,
|
1741
|
+
:help=>nil,
|
1742
|
+
:code_name=>:wall,
|
1743
|
+
:must_pass=>[{:test=>nil, :explanation=>nil}],
|
1744
|
+
:type=>nil},
|
1745
|
+
:rinor=>
|
1746
|
+
{:should_include=>"true",
|
1747
|
+
:description=>nil,
|
1748
|
+
:help=>nil,
|
1749
|
+
:code_name=>:rinor,
|
1750
|
+
:must_pass=>
|
1751
|
+
[{:test=>"kind_of? Numeric",
|
1752
|
+
:explanation=>
|
1753
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1754
|
+
:type=>:Float},
|
1755
|
+
:qcyl=>
|
1756
|
+
{:should_include=>"true",
|
1757
|
+
:description=>nil,
|
1758
|
+
:help=>nil,
|
1759
|
+
:code_name=>:qcyl,
|
1760
|
+
:must_pass=>
|
1761
|
+
[{:test=>"kind_of? Numeric",
|
1762
|
+
:explanation=>
|
1763
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1764
|
+
:type=>:Float},
|
1765
|
+
:p0=>
|
1766
|
+
{:should_include=>"true",
|
1767
|
+
:description=>nil,
|
1768
|
+
:help=>nil,
|
1769
|
+
:code_name=>:p0,
|
1770
|
+
:must_pass=>
|
1771
|
+
[{:test=>"kind_of? Numeric",
|
1772
|
+
:explanation=>
|
1773
|
+
"This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
|
1774
|
+
:type=>:Float},
|
1775
|
+
:nal0auto=>
|
1776
|
+
{:should_include=>"true",
|
1777
|
+
:description=>nil,
|
1778
|
+
:help=>nil,
|
1779
|
+
:code_name=>:nal0auto,
|
1780
|
+
:must_pass=>
|
1781
|
+
[{:test=>"kind_of? Integer",
|
1782
|
+
:explanation=>"This variable must be an integer."}],
|
1783
|
+
:type=>:Integer},
|
1784
|
+
:ner_new=>
|
1785
|
+
{:should_include=>"true",
|
1786
|
+
:description=>nil,
|
1787
|
+
:help=>nil,
|
1788
|
+
:code_name=>:ner,
|
1789
|
+
:must_pass=>
|
1790
|
+
[{:test=>"kind_of? Integer",
|
1791
|
+
:explanation=>"This variable must be an integer."}],
|
1792
|
+
:type=>:Integer},
|
1793
|
+
:negp_new=>
|
1794
|
+
{:should_include=>"true",
|
1795
|
+
:description=>nil,
|
1796
|
+
:help=>nil,
|
1797
|
+
:code_name=>:negp,
|
1798
|
+
:must_pass=>
|
1799
|
+
[{:test=>"kind_of? Integer",
|
1800
|
+
:explanation=>"This variable must be an integer."}],
|
1801
|
+
:type=>:Integer},
|
1802
|
+
:itest=>
|
1803
|
+
{:should_include=>"true",
|
1804
|
+
:description=>nil,
|
1805
|
+
:help=>nil,
|
1806
|
+
:code_name=>:itest,
|
1807
|
+
:must_pass=>
|
1808
|
+
[{:test=>"kind_of? Integer",
|
1809
|
+
:explanation=>"This variable must be an integer."}],
|
1810
|
+
:type=>:Integer},
|
1811
|
+
:meq=>
|
1812
|
+
{:should_include=>"true",
|
1813
|
+
:description=>nil,
|
1814
|
+
:help=>nil,
|
1815
|
+
:code_name=>:meq,
|
1816
|
+
:must_pass=>
|
1817
|
+
[{:test=>"kind_of? Integer",
|
1818
|
+
:explanation=>"This variable must be an integer."}],
|
1819
|
+
:type=>:Integer},
|
1820
|
+
:nchi_new=>
|
1821
|
+
{:should_include=>"true",
|
1822
|
+
:description=>nil,
|
1823
|
+
:help=>nil,
|
1824
|
+
:code_name=>:nchi,
|
1825
|
+
:must_pass=>
|
1826
|
+
[{:test=>"kind_of? Integer",
|
1827
|
+
:explanation=>"This variable must be an integer."}],
|
1828
|
+
:type=>:Integer},
|
1829
|
+
:ndes=>
|
1830
|
+
{:should_include=>"true",
|
1831
|
+
:description=>nil,
|
1832
|
+
:help=>nil,
|
1833
|
+
:code_name=>:ndes,
|
1834
|
+
:must_pass=>
|
1835
|
+
[{:test=>"kind_of? Integer",
|
1836
|
+
:explanation=>"This variable must be an integer."}],
|
1837
|
+
:type=>:Integer},
|
1838
|
+
:nfig=>
|
1839
|
+
{:should_include=>"true",
|
1840
|
+
:description=>nil,
|
1841
|
+
:help=>nil,
|
1842
|
+
:code_name=>:nfig,
|
1843
|
+
:must_pass=>
|
1844
|
+
[{:test=>"kind_of? Integer",
|
1845
|
+
:explanation=>"This variable must be an integer."}],
|
1846
|
+
:type=>:Integer},
|
1847
|
+
:nitmax=>
|
1848
|
+
{:should_include=>"true",
|
1849
|
+
:description=>nil,
|
1850
|
+
:help=>nil,
|
1851
|
+
:code_name=>:nitmax,
|
1852
|
+
:must_pass=>
|
1853
|
+
[{:test=>"kind_of? Integer",
|
1854
|
+
:explanation=>"This variable must be an integer."}],
|
1855
|
+
:type=>:Integer},
|
1856
|
+
:nprnt=>
|
1857
|
+
{:should_include=>"true",
|
1858
|
+
:description=>nil,
|
1859
|
+
:help=>nil,
|
1860
|
+
:code_name=>:nprnt,
|
1861
|
+
:must_pass=>
|
1862
|
+
[{:test=>"kind_of? Integer",
|
1863
|
+
:explanation=>"This variable must be an integer."}],
|
1864
|
+
:type=>:Integer},
|
1865
|
+
:npsi_new=>
|
1866
|
+
{:should_include=>"true",
|
1867
|
+
:description=>nil,
|
1868
|
+
:help=>nil,
|
1869
|
+
:code_name=>:npsi,
|
1870
|
+
:must_pass=>
|
1871
|
+
[{:test=>"kind_of? Integer",
|
1872
|
+
:explanation=>"This variable must be an integer."}],
|
1873
|
+
:type=>:Integer},
|
1874
|
+
:nsave=>
|
1875
|
+
{:should_include=>"true",
|
1876
|
+
:description=>nil,
|
1877
|
+
:help=>nil,
|
1878
|
+
:code_name=>:nsave,
|
1879
|
+
:must_pass=>
|
1880
|
+
[{:test=>"kind_of? Integer",
|
1881
|
+
:explanation=>"This variable must be an integer."}],
|
1882
|
+
:type=>:Integer},
|
1883
|
+
:nua1=>
|
1884
|
+
{:should_include=>"true",
|
1885
|
+
:description=>nil,
|
1886
|
+
:help=>nil,
|
1887
|
+
:code_name=>:nua1,
|
1888
|
+
:must_pass=>
|
1889
|
+
[{:test=>"kind_of? Integer",
|
1890
|
+
:explanation=>"This variable must be an integer."}],
|
1891
|
+
:type=>:Integer},
|
1892
|
+
:nua2=>
|
1893
|
+
{:should_include=>"true",
|
1894
|
+
:description=>nil,
|
1895
|
+
:help=>nil,
|
1896
|
+
:code_name=>:nua2,
|
1897
|
+
:must_pass=>
|
1898
|
+
[{:test=>"kind_of? Integer",
|
1899
|
+
:explanation=>"This variable must be an integer."}],
|
1900
|
+
:type=>:Integer},
|
1901
|
+
:nub1=>
|
1902
|
+
{:should_include=>"true",
|
1903
|
+
:description=>nil,
|
1904
|
+
:help=>nil,
|
1905
|
+
:code_name=>:nub1,
|
1906
|
+
:must_pass=>
|
1907
|
+
[{:test=>"kind_of? Integer",
|
1908
|
+
:explanation=>"This variable must be an integer."}],
|
1909
|
+
:type=>:Integer},
|
1910
|
+
:nub2=>
|
1911
|
+
{:should_include=>"true",
|
1912
|
+
:description=>nil,
|
1913
|
+
:help=>nil,
|
1914
|
+
:code_name=>:nub2,
|
1915
|
+
:must_pass=>
|
1916
|
+
[{:test=>"kind_of? Integer",
|
1917
|
+
:explanation=>"This variable must be an integer."}],
|
1918
|
+
:type=>:Integer},
|
1919
|
+
:nux=>
|
1920
|
+
{:should_include=>"true",
|
1921
|
+
:description=>nil,
|
1922
|
+
:help=>nil,
|
1923
|
+
:code_name=>:nux,
|
1924
|
+
:must_pass=>
|
1925
|
+
[{:test=>"kind_of? Integer",
|
1926
|
+
:explanation=>"This variable must be an integer."}],
|
1927
|
+
:type=>:Integer},
|
1928
|
+
:nupl=>
|
1929
|
+
{:should_include=>"true",
|
1930
|
+
:description=>nil,
|
1931
|
+
:help=>nil,
|
1932
|
+
:code_name=>:nupl,
|
1933
|
+
:must_pass=>
|
1934
|
+
[{:test=>"kind_of? Integer",
|
1935
|
+
:explanation=>"This variable must be an integer."}],
|
1936
|
+
:type=>:Integer},
|
1937
|
+
:nusg=>
|
1938
|
+
{:should_include=>"true",
|
1939
|
+
:description=>nil,
|
1940
|
+
:help=>nil,
|
1941
|
+
:code_name=>:nusg,
|
1942
|
+
:must_pass=>
|
1943
|
+
[{:test=>"kind_of? Integer",
|
1944
|
+
:explanation=>"This variable must be an integer."}],
|
1945
|
+
:type=>:Integer},
|
1946
|
+
:nv_new=>
|
1947
|
+
{:should_include=>"true",
|
1948
|
+
:description=>nil,
|
1949
|
+
:help=>nil,
|
1950
|
+
:code_name=>:nv,
|
1951
|
+
:must_pass=>
|
1952
|
+
[{:test=>"kind_of? Integer",
|
1953
|
+
:explanation=>"This variable must be an integer."}],
|
1954
|
+
:type=>:Integer},
|
1955
|
+
:nuwa=>
|
1956
|
+
{:should_include=>"true",
|
1957
|
+
:description=>nil,
|
1958
|
+
:help=>nil,
|
1959
|
+
:code_name=>:nuwa,
|
1960
|
+
:must_pass=>
|
1961
|
+
[{:test=>"kind_of? Integer",
|
1962
|
+
:explanation=>"This variable must be an integer."}],
|
1963
|
+
:type=>:Integer},
|
1964
|
+
:nvac=>
|
1965
|
+
{:should_include=>"true",
|
1966
|
+
:description=>nil,
|
1967
|
+
:help=>nil,
|
1968
|
+
:code_name=>:nvac,
|
1969
|
+
:must_pass=>
|
1970
|
+
[{:test=>"kind_of? Integer",
|
1971
|
+
:explanation=>"This variable must be an integer."}],
|
1972
|
+
:type=>:Integer},
|
1973
|
+
:nvit=>
|
1974
|
+
{:should_include=>"true",
|
1975
|
+
:description=>nil,
|
1976
|
+
:help=>nil,
|
1977
|
+
:code_name=>:nvit,
|
1978
|
+
:must_pass=>
|
1979
|
+
[{:test=>"kind_of? Integer",
|
1980
|
+
:explanation=>"This variable must be an integer."}],
|
1981
|
+
:type=>:Integer},
|
1982
|
+
:nwall=>
|
1983
|
+
{:should_include=>"true",
|
1984
|
+
:description=>nil,
|
1985
|
+
:help=>nil,
|
1986
|
+
:code_name=>:nwall,
|
1987
|
+
:must_pass=>
|
1988
|
+
[{:test=>"kind_of? Integer",
|
1989
|
+
:explanation=>"This variable must be an integer."}],
|
1990
|
+
:type=>:Integer},
|
1991
|
+
:nldiag=>
|
1992
|
+
{:should_include=>"true",
|
1993
|
+
:description=>nil,
|
1994
|
+
:help=>nil,
|
1995
|
+
:code_name=>:nldiag,
|
1996
|
+
:must_pass=>[{:test=>nil, :explanation=>nil}],
|
1997
|
+
:type=>nil},
|
1998
|
+
:nleinq=>
|
1999
|
+
{:should_include=>"true",
|
2000
|
+
:description=>nil,
|
2001
|
+
:help=>nil,
|
2002
|
+
:code_name=>:nleinq,
|
2003
|
+
:must_pass=>
|
2004
|
+
[{:test=>"kind_of? String",
|
2005
|
+
:explanation=>"This variable must be a string."}],
|
2006
|
+
:type=>:String},
|
2007
|
+
:nlgren=>
|
2008
|
+
{:should_include=>"true",
|
2009
|
+
:description=>nil,
|
2010
|
+
:help=>nil,
|
2011
|
+
:code_name=>:nlgren,
|
2012
|
+
:must_pass=>
|
2013
|
+
[{:test=>"kind_of? String",
|
2014
|
+
:explanation=>"This variable must be a string."}],
|
2015
|
+
:type=>:String},
|
2016
|
+
:nlsym=>
|
2017
|
+
{:should_include=>"true",
|
2018
|
+
:description=>nil,
|
2019
|
+
:help=>nil,
|
2020
|
+
:code_name=>:nlsym,
|
2021
|
+
:must_pass=>
|
2022
|
+
[{:test=>"kind_of? String",
|
2023
|
+
:explanation=>"This variable must be a string."}],
|
2024
|
+
:type=>:String}}}}
|