nudge 0.0.2 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/Rakefile +11 -7
- data/VERSION +1 -1
- data/lib/instructions/bool/bool_and.rb +19 -0
- data/lib/instructions/bool/bool_define.rb +6 -0
- data/lib/instructions/bool/bool_depth.rb +6 -0
- data/lib/instructions/bool/bool_duplicate.rb +6 -0
- data/lib/instructions/bool/bool_equal_q.rb +19 -0
- data/lib/instructions/bool/bool_flush.rb +6 -0
- data/lib/instructions/bool/bool_not.rb +18 -0
- data/lib/instructions/bool/bool_or.rb +19 -0
- data/lib/instructions/bool/bool_pop.rb +6 -0
- data/lib/instructions/bool/bool_random.rb +13 -0
- data/lib/instructions/bool/bool_rotate.rb +6 -0
- data/lib/instructions/bool/bool_shove.rb +6 -0
- data/lib/instructions/bool/bool_swap.rb +6 -0
- data/lib/instructions/bool/bool_xor.rb +19 -0
- data/lib/instructions/bool/bool_yank.rb +6 -0
- data/lib/instructions/bool/bool_yankdup.rb +6 -0
- data/lib/instructions/code/code_atom_q.rb +16 -0
- data/lib/instructions/code/code_backbone_points.rb +24 -0
- data/lib/instructions/code/code_car.rb +20 -0
- data/lib/instructions/code/code_cdr.rb +20 -0
- data/lib/instructions/code/code_concatenate.rb +31 -0
- data/lib/instructions/code/code_cons.rb +25 -0
- data/lib/instructions/code/code_container.rb +28 -0
- data/lib/instructions/code/code_contains_q.rb +22 -0
- data/lib/instructions/code/code_define.rb +21 -0
- data/lib/instructions/code/code_depth.rb +6 -0
- data/lib/instructions/code/code_discrepancy.rb +29 -0
- data/lib/instructions/code/code_do_count.rb +27 -0
- data/lib/instructions/code/code_do_range.rb +42 -0
- data/lib/instructions/code/code_do_times.rb +38 -0
- data/lib/instructions/code/code_duplicate.rb +6 -0
- data/lib/instructions/code/code_equal_q.rb +17 -0
- data/lib/instructions/code/code_execute.rb +19 -0
- data/lib/instructions/code/code_execute_then_pop.rb +20 -0
- data/lib/instructions/code/code_flush.rb +6 -0
- data/lib/instructions/code/code_gsub.rb +35 -0
- data/lib/instructions/code/code_if.rb +22 -0
- data/lib/instructions/code/code_instructions.rb +15 -0
- data/lib/instructions/code/code_list.rb +19 -0
- data/lib/instructions/code/code_member_q.rb +26 -0
- data/lib/instructions/code/code_name_lookup.rb +19 -0
- data/lib/instructions/code/code_nth.rb +24 -0
- data/lib/instructions/code/code_nth_cdr.rb +30 -0
- data/lib/instructions/code/code_nth_point.rb +21 -0
- data/lib/instructions/code/code_null_q.rb +15 -0
- data/lib/instructions/code/code_parses_q.rb +15 -0
- data/lib/instructions/code/code_points.rb +19 -0
- data/lib/instructions/code/code_pop.rb +6 -0
- data/lib/instructions/code/code_position.rb +22 -0
- data/lib/instructions/code/code_quote.rb +14 -0
- data/lib/instructions/code/code_replace_nth_point.rb +30 -0
- data/lib/instructions/code/code_rotate.rb +6 -0
- data/lib/instructions/code/code_shove.rb +6 -0
- data/lib/instructions/code/code_swap.rb +6 -0
- data/lib/instructions/code/code_yank.rb +6 -0
- data/lib/instructions/code/code_yankdup.rb +6 -0
- data/lib/instructions/conversion/bool_from_float.rb +14 -0
- data/lib/instructions/conversion/bool_from_int.rb +14 -0
- data/lib/instructions/conversion/code_from_bool.rb +16 -0
- data/lib/instructions/conversion/code_from_float.rb +16 -0
- data/lib/instructions/conversion/code_from_int.rb +17 -0
- data/lib/instructions/conversion/code_from_name.rb +16 -0
- data/lib/instructions/conversion/float_from_bool.rb +14 -0
- data/lib/instructions/conversion/float_from_int.rb +14 -0
- data/lib/instructions/conversion/int_from_bool.rb +14 -0
- data/lib/instructions/conversion/int_from_float.rb +14 -0
- data/lib/instructions/exec/exec_define.rb +6 -0
- data/lib/instructions/exec/exec_depth.rb +6 -0
- data/lib/instructions/exec/exec_do_count.rb +23 -0
- data/lib/instructions/exec/exec_do_range.rb +36 -0
- data/lib/instructions/exec/exec_do_times.rb +34 -0
- data/lib/instructions/exec/exec_duplicate.rb +6 -0
- data/lib/instructions/exec/exec_equal_q.rb +17 -0
- data/lib/instructions/exec/exec_flush.rb +6 -0
- data/lib/instructions/exec/exec_if.rb +8 -0
- data/lib/instructions/exec/exec_k.rb +14 -0
- data/lib/instructions/exec/exec_pop.rb +6 -0
- data/lib/instructions/exec/exec_rotate.rb +6 -0
- data/lib/instructions/exec/exec_s.rb +18 -0
- data/lib/instructions/exec/exec_shove.rb +6 -0
- data/lib/instructions/exec/exec_swap.rb +6 -0
- data/lib/instructions/exec/exec_y.rb +15 -0
- data/lib/instructions/exec/exec_yank.rb +6 -0
- data/lib/instructions/exec/exec_yankdup.rb +6 -0
- data/lib/instructions/float/float_abs.rb +14 -0
- data/lib/instructions/float/float_add.rb +15 -0
- data/lib/instructions/float/float_cosine.rb +14 -0
- data/lib/instructions/float/float_define.rb +6 -0
- data/lib/instructions/float/float_depth.rb +6 -0
- data/lib/instructions/float/float_divide.rb +20 -0
- data/lib/instructions/float/float_duplicate.rb +6 -0
- data/lib/instructions/float/float_equal_q.rb +15 -0
- data/lib/instructions/float/float_flush.rb +6 -0
- data/lib/instructions/float/float_greater_than_q.rb +15 -0
- data/lib/instructions/float/float_if.rb +8 -0
- data/lib/instructions/float/float_less_than_q.rb +15 -0
- data/lib/instructions/float/float_max.rb +15 -0
- data/lib/instructions/float/float_min.rb +15 -0
- data/lib/instructions/float/float_modulo.rb +20 -0
- data/lib/instructions/float/float_multiply.rb +15 -0
- data/lib/instructions/float/float_negative.rb +14 -0
- data/lib/instructions/float/float_pop.rb +6 -0
- data/lib/instructions/float/float_power.rb +20 -0
- data/lib/instructions/float/float_random.rb +13 -0
- data/lib/instructions/float/float_rotate.rb +6 -0
- data/lib/instructions/float/float_shove.rb +6 -0
- data/lib/instructions/float/float_sine.rb +14 -0
- data/lib/instructions/float/float_sqrt.rb +18 -0
- data/lib/instructions/float/float_subtract.rb +15 -0
- data/lib/instructions/float/float_swap.rb +6 -0
- data/lib/instructions/float/float_tangent.rb +14 -0
- data/lib/instructions/float/float_yank.rb +6 -0
- data/lib/instructions/float/float_yankdup.rb +6 -0
- data/lib/instructions/infrastructure.rb +335 -17
- data/lib/instructions/int/int_abs.rb +14 -0
- data/lib/instructions/int/int_add.rb +15 -0
- data/lib/instructions/int/int_define.rb +6 -0
- data/lib/instructions/int/int_depth.rb +6 -0
- data/lib/instructions/int/int_divide.rb +20 -0
- data/lib/instructions/int/int_duplicate.rb +6 -0
- data/lib/instructions/int/int_equal_q.rb +15 -0
- data/lib/instructions/int/int_flush.rb +6 -0
- data/lib/instructions/int/int_greater_than_q.rb +15 -0
- data/lib/instructions/int/int_if.rb +8 -0
- data/lib/instructions/int/int_less_than_q.rb +15 -0
- data/lib/instructions/int/int_max.rb +16 -0
- data/lib/instructions/int/int_min.rb +16 -0
- data/lib/instructions/int/int_modulo.rb +20 -0
- data/lib/instructions/int/int_multiply.rb +15 -0
- data/lib/instructions/int/int_negative.rb +14 -0
- data/lib/instructions/int/int_pop.rb +6 -0
- data/lib/instructions/int/int_power.rb +16 -0
- data/lib/instructions/int/int_random.rb +13 -0
- data/lib/instructions/int/int_rotate.rb +6 -0
- data/lib/instructions/int/int_shove.rb +6 -0
- data/lib/instructions/int/int_subtract.rb +16 -0
- data/lib/instructions/int/int_swap.rb +6 -0
- data/lib/instructions/int/int_yank.rb +6 -0
- data/lib/instructions/int/int_yankdup.rb +6 -0
- data/lib/instructions/name/name_depth.rb +6 -0
- data/lib/instructions/name/name_disable_lookup.rb +12 -0
- data/lib/instructions/name/name_duplicate.rb +6 -0
- data/lib/instructions/name/name_equal_q.rb +15 -0
- data/lib/instructions/name/name_flush.rb +6 -0
- data/lib/instructions/name/name_next.rb +14 -0
- data/lib/instructions/name/name_pop.rb +6 -0
- data/lib/instructions/name/name_random_bound.rb +14 -0
- data/lib/instructions/name/name_rotate.rb +6 -0
- data/lib/instructions/name/name_shove.rb +6 -0
- data/lib/instructions/name/name_swap.rb +6 -0
- data/lib/instructions/name/name_unbind.rb +17 -0
- data/lib/instructions/name/name_yank.rb +6 -0
- data/lib/instructions/name/name_yankdup.rb +6 -0
- data/lib/interpreter/grammars/nudge_codeblock.treetop +17 -0
- data/lib/interpreter/grammars/nudge_codeblock_helpers.rb +19 -0
- data/lib/interpreter/grammars/nudge_common.treetop +15 -0
- data/lib/interpreter/grammars/nudge_instruction.treetop +14 -0
- data/lib/interpreter/grammars/nudge_instruction_helpers.rb +14 -0
- data/lib/interpreter/grammars/nudge_reference.treetop +9 -0
- data/lib/interpreter/grammars/nudge_reference_helpers.rb +14 -0
- data/lib/interpreter/grammars/nudge_value.treetop +14 -0
- data/lib/interpreter/grammars/nudge_value_helpers.rb +19 -0
- data/lib/interpreter/interpreter.rb +74 -23
- data/lib/interpreter/nudge_program.rb +253 -0
- data/lib/interpreter/parse.tab.rb +264 -0
- data/lib/interpreter/programPoints.rb +119 -98
- data/lib/interpreter/types/codeType.rb +114 -89
- data/lib/interpreter/types/pushTypes.rb +33 -20
- data/lib/nudge.rb +25 -26
- data/readme.md +13 -10
- data/spec/fixtures/long_arithmetic.example +7 -4
- data/spec/instructions/bool/bool_and_spec.rb +61 -0
- data/spec/instructions/bool/bool_define_spec.rb +69 -0
- data/spec/instructions/bool/bool_depth_spec.rb +39 -0
- data/spec/instructions/bool/bool_equal_q_spec.rb +61 -0
- data/spec/instructions/bool/bool_flush_spec.rb +37 -0
- data/spec/instructions/bool/bool_not_spec.rb +61 -0
- data/spec/instructions/bool/bool_or_spec.rb +61 -0
- data/spec/instructions/bool/bool_random_spec.rb +39 -0
- data/spec/instructions/bool/bool_shove_spec.rb +69 -0
- data/spec/instructions/bool/bool_xor_spec.rb +61 -0
- data/spec/instructions/bool/bool_yank_spec.rb +71 -0
- data/spec/instructions/bool/bool_yankdup_spec.rb +70 -0
- data/spec/instructions/code/code_atom_q_spec.rb +44 -0
- data/spec/instructions/code/code_backbone_points_spec.rb +57 -0
- data/spec/instructions/code/code_car_spec.rb +50 -0
- data/spec/instructions/code/code_cdr_spec.rb +51 -0
- data/spec/instructions/code/code_concatenate_spec.rb +81 -0
- data/spec/instructions/code/code_cons_spec.rb +63 -0
- data/spec/instructions/code/code_container_spec.rb +77 -0
- data/spec/instructions/code/code_contains_q_spec.rb +82 -0
- data/spec/instructions/code/code_define_spec.rb +76 -0
- data/spec/instructions/code/code_discrepancy_spec.rb +81 -0
- data/spec/instructions/code/code_do_count_spec.rb +83 -0
- data/spec/instructions/code/code_do_range_spec.rb +113 -0
- data/spec/instructions/code/code_do_times_spec.rb +116 -0
- data/spec/instructions/code/code_equal_q_spec.rb +49 -0
- data/spec/instructions/code/code_execute_spec.rb +52 -0
- data/spec/instructions/code/code_execute_then_pop_spec.rb +61 -0
- data/spec/instructions/code/code_fromname_spec.rb +37 -0
- data/spec/instructions/code/code_gsub_spec.rb +112 -0
- data/spec/instructions/code/code_if_spec.rb +53 -0
- data/spec/instructions/code/code_instructions_spec.rb +42 -0
- data/spec/instructions/code/code_list_spec.rb +49 -0
- data/spec/instructions/code/code_member_q_spec.rb +77 -0
- data/spec/instructions/code/code_name_lookup_spec.rb +65 -0
- data/spec/instructions/code/code_noop_spec.rb +38 -0
- data/spec/instructions/code/code_nth_cdr_spec.rb +77 -0
- data/spec/instructions/code/code_nth_point_spec.rb +67 -0
- data/spec/instructions/code/code_nth_spec.rb +62 -0
- data/spec/instructions/code/code_null_q_spec.rb +44 -0
- data/spec/instructions/code/code_parses_q_spec.rb +73 -0
- data/spec/instructions/code/code_points_spec.rb +49 -0
- data/spec/instructions/code/code_position_spec.rb +74 -0
- data/spec/instructions/code/code_quote_spec.rb +53 -0
- data/spec/instructions/code/code_replace_nth_point_spec.rb +115 -0
- data/spec/instructions/code/code_stack_spec.rb +386 -0
- data/spec/instructions/exec/exec_define_spec.rb +70 -0
- data/spec/instructions/exec/exec_depth_spec.rb +39 -0
- data/spec/instructions/exec/exec_do_count_spec.rb +79 -0
- data/spec/instructions/exec/exec_do_range_spec.rb +98 -0
- data/spec/instructions/exec/exec_do_times_spec.rb +105 -0
- data/spec/instructions/exec/exec_duplicate_spec.rb +44 -0
- data/spec/instructions/exec/exec_equal_q_spec.rb +50 -0
- data/spec/instructions/exec/exec_flush_spec.rb +37 -0
- data/spec/instructions/exec/exec_if_spec.rb +51 -0
- data/spec/instructions/exec/exec_k_spec.rb +39 -0
- data/spec/instructions/exec/exec_pop_spec.rb +38 -0
- data/spec/instructions/exec/exec_rotate_spec.rb +40 -0
- data/spec/instructions/exec/exec_s_spec.rb +41 -0
- data/spec/instructions/exec/exec_shove_spec.rb +68 -0
- data/spec/instructions/exec/exec_swap_spec.rb +41 -0
- data/spec/instructions/exec/exec_y_spec.rb +41 -0
- data/spec/instructions/exec/exec_yank_spec.rb +66 -0
- data/spec/instructions/exec/exec_yankdup_spec.rb +69 -0
- data/spec/instructions/float/float_abs_spec.rb +50 -0
- data/spec/instructions/float/float_add_spec.rb +50 -0
- data/spec/instructions/float/float_cosine_spec.rb +61 -0
- data/spec/instructions/float/float_define_spec.rb +69 -0
- data/spec/instructions/float/float_depth_spec.rb +39 -0
- data/spec/instructions/float/float_divide_spec.rb +59 -0
- data/spec/instructions/float/float_equal_q_spec.rb +53 -0
- data/spec/instructions/float/float_flush_spec.rb +37 -0
- data/spec/instructions/float/float_greater_than_q_spec.rb +59 -0
- data/spec/instructions/float/float_if_spec.rb +49 -0
- data/spec/instructions/float/float_less_than_q_spec.rb +59 -0
- data/spec/instructions/float/float_max_spec.rb +51 -0
- data/spec/instructions/float/float_min_spec.rb +51 -0
- data/spec/instructions/float/float_modulo_spec.rb +59 -0
- data/spec/instructions/float/float_multiply_spec.rb +51 -0
- data/spec/instructions/float/float_negative_spec.rb +51 -0
- data/spec/instructions/float/float_power_spec.rb +59 -0
- data/spec/instructions/float/float_random_spec.rb +36 -0
- data/spec/instructions/float/float_shove_spec.rb +67 -0
- data/spec/instructions/float/float_sine_spec.rb +61 -0
- data/spec/instructions/float/float_sqrt_spec.rb +60 -0
- data/spec/instructions/float/float_subtract_spec.rb +51 -0
- data/spec/instructions/float/float_tangent_spec.rb +62 -0
- data/spec/instructions/float/float_yank_spec.rb +65 -0
- data/spec/instructions/float/float_yankdup_spec.rb +70 -0
- data/spec/instructions/instruction_class_spec.rb +31 -0
- data/spec/instructions/int/int_abs_spec.rb +61 -0
- data/spec/instructions/int/int_add_spec.rb +60 -0
- data/spec/instructions/int/int_define_spec.rb +73 -0
- data/spec/instructions/int/int_depth_spec.rb +37 -0
- data/spec/instructions/int/int_divide_spec.rb +69 -0
- data/spec/instructions/int/int_equal_q_spec.rb +52 -0
- data/spec/instructions/int/int_flush_spec.rb +37 -0
- data/spec/instructions/int/int_greater_than_q_spec.rb +59 -0
- data/spec/instructions/int/int_if_spec.rb +48 -0
- data/spec/instructions/int/int_less_than_q_spec.rb +59 -0
- data/spec/instructions/int/int_max_spec.rb +61 -0
- data/spec/instructions/int/int_min_spec.rb +61 -0
- data/spec/instructions/int/int_modulo_spec.rb +69 -0
- data/spec/instructions/int/int_multiply_spec.rb +61 -0
- data/spec/instructions/int/int_negative_spec.rb +61 -0
- data/spec/instructions/int/int_power_spec.rb +73 -0
- data/spec/instructions/int/int_random_spec.rb +36 -0
- data/spec/instructions/int/int_shove_spec.rb +67 -0
- data/spec/instructions/int/int_subtract_spec.rb +61 -0
- data/spec/instructions/int/int_yank_spec.rb +85 -0
- data/spec/instructions/int/int_yankdup_spec.rb +70 -0
- data/spec/instructions/name/name_depth_spec.rb +39 -0
- data/spec/instructions/name/name_disable_lookup_spec.rb +47 -0
- data/spec/instructions/name/name_equal_q_spec.rb +38 -0
- data/spec/instructions/name/name_flush_spec.rb +37 -0
- data/spec/instructions/name/name_next_spec.rb +39 -0
- data/spec/instructions/name/name_random_bound_spec.rb +57 -0
- data/spec/instructions/name/name_shove_spec.rb +67 -0
- data/spec/instructions/name/name_unbind_spec.rb +62 -0
- data/spec/instructions/name/name_yank_spec.rb +65 -0
- data/spec/instructions/name/name_yankdup_spec.rb +69 -0
- data/spec/instructions/split_these/bool_stack_spec.rb +95 -0
- data/spec/instructions/split_these/conversions_spec.rb +103 -0
- data/spec/instructions/split_these/float_stack_spec.rb +92 -0
- data/spec/instructions/split_these/int_stack_spec.rb +81 -0
- data/spec/instructions/split_these/name_stack_spec.rb +84 -0
- data/spec/interpreter/codeblock_point_spec.rb +164 -0
- data/spec/interpreter/codetype_spec.rb +219 -185
- data/spec/interpreter/instruction_spec.rb +87 -25
- data/spec/interpreter/interpreter_spec.rb +230 -36
- data/spec/interpreter/nil_point_spec.rb +32 -0
- data/spec/interpreter/nudge_program_spec.rb +774 -0
- data/spec/interpreter/reference_point_spec.rb +73 -0
- data/spec/interpreter/stack_spec.rb +1 -1
- data/spec/interpreter/treetophelpers.rb +94 -1
- data/spec/interpreter/types_spec.rb +125 -77
- data/spec/interpreter/value_point_spec.rb +173 -0
- data/spec/parsers/nudge_program_parser_spec.rb +86 -0
- data/spec/spec_helper.rb +26 -2
- metadata +464 -664
- data/_spikes/couch_document_spike.rb +0 -24
- data/_spikes/nested_parsing/nested.treetop +0 -6
- data/_spikes/nudge3_syntax_spike.txt +0 -23
- data/_spikes/nudgeview/init.rb +0 -19
- data/_spikes/nudgeview/public/javascripts/app.js +0 -12
- data/_spikes/nudgeview/public/javascripts/jquery.js +0 -4376
- data/_spikes/nudgeview/public/javascripts/jquery.svg.js +0 -1325
- data/_spikes/nudgeview/views/index.erb +0 -18
- data/_spikes/nudgeview/views/index.haml +0 -8
- data/_spikes/simplestWeb/simplest.rb +0 -44
- data/_spikes/simplestWeb/views/main.erb +0 -19
- data/_spikes/sketches/nudgecode_spike.rb +0 -146
- data/_spikes/sketches/searchDSL_spike.rb +0 -25
- data/_spikes/sketches/search_operator_sketch_spike.txt +0 -287
- data/_spikes/sketches/searchspace_spike.rb +0 -96
- data/_spikes/symbolic_regression/activate.rb +0 -35
- data/_spikes/symbolic_regression/config/environment.rb +0 -340
- data/_spikes/symbolic_regression/config/environments/deployment.rb +0 -0
- data/_spikes/symbolic_regression/config/environments/development.rb +0 -0
- data/_spikes/symbolic_regression/experiment/objectives/programLength.rb +0 -2
- data/_spikes/symbolic_regression/experiment/objectives/summedSquaredError.rb +0 -2
- data/_spikes/symbolic_regression/lib/tasks/run.rake +0 -0
- data/app_generators/nudge/USAGE +0 -5
- data/app_generators/nudge/nudge_generator.rb +0 -73
- data/app_generators/nudge/templates/activate.rb +0 -0
- data/bin/nudge +0 -17
- data/doc/classes/BlockNode.html +0 -146
- data/doc/classes/BlockNode.src/M000246.html +0 -18
- data/doc/classes/BoolAndInstruction.html +0 -218
- data/doc/classes/BoolAndInstruction.src/M000003.html +0 -15
- data/doc/classes/BoolAndInstruction.src/M000004.html +0 -16
- data/doc/classes/BoolAndInstruction.src/M000005.html +0 -15
- data/doc/classes/BoolAndInstruction.src/M000006.html +0 -15
- data/doc/classes/BoolEqualQInstruction.html +0 -218
- data/doc/classes/BoolEqualQInstruction.src/M000015.html +0 -15
- data/doc/classes/BoolEqualQInstruction.src/M000016.html +0 -16
- data/doc/classes/BoolEqualQInstruction.src/M000017.html +0 -15
- data/doc/classes/BoolEqualQInstruction.src/M000018.html +0 -15
- data/doc/classes/BoolFromFloatInstruction.html +0 -218
- data/doc/classes/BoolFromFloatInstruction.src/M000071.html +0 -15
- data/doc/classes/BoolFromFloatInstruction.src/M000072.html +0 -15
- data/doc/classes/BoolFromFloatInstruction.src/M000073.html +0 -15
- data/doc/classes/BoolFromFloatInstruction.src/M000074.html +0 -15
- data/doc/classes/BoolFromIntInstruction.html +0 -218
- data/doc/classes/BoolFromIntInstruction.src/M000067.html +0 -15
- data/doc/classes/BoolFromIntInstruction.src/M000068.html +0 -15
- data/doc/classes/BoolFromIntInstruction.src/M000069.html +0 -15
- data/doc/classes/BoolFromIntInstruction.src/M000070.html +0 -15
- data/doc/classes/BoolNotInstruction.html +0 -218
- data/doc/classes/BoolNotInstruction.src/M000019.html +0 -15
- data/doc/classes/BoolNotInstruction.src/M000020.html +0 -15
- data/doc/classes/BoolNotInstruction.src/M000021.html +0 -15
- data/doc/classes/BoolNotInstruction.src/M000022.html +0 -15
- data/doc/classes/BoolOrInstruction.html +0 -218
- data/doc/classes/BoolOrInstruction.src/M000007.html +0 -15
- data/doc/classes/BoolOrInstruction.src/M000008.html +0 -16
- data/doc/classes/BoolOrInstruction.src/M000009.html +0 -15
- data/doc/classes/BoolOrInstruction.src/M000010.html +0 -15
- data/doc/classes/BoolRandomInstruction.html +0 -218
- data/doc/classes/BoolRandomInstruction.src/M000187.html +0 -15
- data/doc/classes/BoolRandomInstruction.src/M000188.html +0 -14
- data/doc/classes/BoolRandomInstruction.src/M000189.html +0 -15
- data/doc/classes/BoolRandomInstruction.src/M000190.html +0 -15
- data/doc/classes/BoolType.html +0 -196
- data/doc/classes/BoolType.src/M000240.html +0 -16
- data/doc/classes/BoolType.src/M000241.html +0 -15
- data/doc/classes/BoolType.src/M000242.html +0 -15
- data/doc/classes/BoolXorInstruction.html +0 -218
- data/doc/classes/BoolXorInstruction.src/M000011.html +0 -15
- data/doc/classes/BoolXorInstruction.src/M000012.html +0 -16
- data/doc/classes/BoolXorInstruction.src/M000013.html +0 -15
- data/doc/classes/BoolXorInstruction.src/M000014.html +0 -15
- data/doc/classes/ChannelNode.html +0 -161
- data/doc/classes/ChannelNode.src/M000249.html +0 -15
- data/doc/classes/ChannelNode.src/M000250.html +0 -16
- data/doc/classes/CodeType.html +0 -269
- data/doc/classes/CodeType.src/M000219.html +0 -38
- data/doc/classes/CodeType.src/M000220.html +0 -16
- data/doc/classes/CodeType.src/M000221.html +0 -16
- data/doc/classes/CodeType.src/M000222.html +0 -16
- data/doc/classes/CodeType.src/M000223.html +0 -24
- data/doc/classes/CodeType.src/M000224.html +0 -42
- data/doc/classes/ERCNode.html +0 -183
- data/doc/classes/ERCNode.src/M000254.html +0 -15
- data/doc/classes/ERCNode.src/M000255.html +0 -16
- data/doc/classes/ERCNode.src/M000256.html +0 -16
- data/doc/classes/ExecPopInstruction.html +0 -218
- data/doc/classes/ExecPopInstruction.src/M000075.html +0 -15
- data/doc/classes/ExecPopInstruction.src/M000076.html +0 -14
- data/doc/classes/ExecPopInstruction.src/M000077.html +0 -15
- data/doc/classes/ExecPopInstruction.src/M000078.html +0 -14
- data/doc/classes/FloatAbsInstruction.html +0 -218
- data/doc/classes/FloatAbsInstruction.src/M000107.html +0 -15
- data/doc/classes/FloatAbsInstruction.src/M000108.html +0 -15
- data/doc/classes/FloatAbsInstruction.src/M000109.html +0 -15
- data/doc/classes/FloatAbsInstruction.src/M000110.html +0 -15
- data/doc/classes/FloatAddInstruction.html +0 -218
- data/doc/classes/FloatAddInstruction.src/M000079.html +0 -15
- data/doc/classes/FloatAddInstruction.src/M000080.html +0 -16
- data/doc/classes/FloatAddInstruction.src/M000081.html +0 -15
- data/doc/classes/FloatAddInstruction.src/M000082.html +0 -15
- data/doc/classes/FloatCosineInstruction.html +0 -218
- data/doc/classes/FloatCosineInstruction.src/M000123.html +0 -15
- data/doc/classes/FloatCosineInstruction.src/M000124.html +0 -15
- data/doc/classes/FloatCosineInstruction.src/M000125.html +0 -15
- data/doc/classes/FloatCosineInstruction.src/M000126.html +0 -15
- data/doc/classes/FloatDivideInstruction.html +0 -218
- data/doc/classes/FloatDivideInstruction.src/M000091.html +0 -15
- data/doc/classes/FloatDivideInstruction.src/M000092.html +0 -16
- data/doc/classes/FloatDivideInstruction.src/M000093.html +0 -20
- data/doc/classes/FloatDivideInstruction.src/M000094.html +0 -15
- data/doc/classes/FloatFromBoolInstruction.html +0 -218
- data/doc/classes/FloatFromBoolInstruction.src/M000055.html +0 -15
- data/doc/classes/FloatFromBoolInstruction.src/M000056.html +0 -15
- data/doc/classes/FloatFromBoolInstruction.src/M000057.html +0 -15
- data/doc/classes/FloatFromBoolInstruction.src/M000058.html +0 -15
- data/doc/classes/FloatFromIntInstruction.html +0 -218
- data/doc/classes/FloatFromIntInstruction.src/M000063.html +0 -15
- data/doc/classes/FloatFromIntInstruction.src/M000064.html +0 -15
- data/doc/classes/FloatFromIntInstruction.src/M000065.html +0 -15
- data/doc/classes/FloatFromIntInstruction.src/M000066.html +0 -15
- data/doc/classes/FloatGreaterThanQInstruction.html +0 -218
- data/doc/classes/FloatGreaterThanQInstruction.src/M000035.html +0 -15
- data/doc/classes/FloatGreaterThanQInstruction.src/M000036.html +0 -16
- data/doc/classes/FloatGreaterThanQInstruction.src/M000037.html +0 -15
- data/doc/classes/FloatGreaterThanQInstruction.src/M000038.html +0 -15
- data/doc/classes/FloatIfInstruction.html +0 -218
- data/doc/classes/FloatIfInstruction.src/M000047.html +0 -16
- data/doc/classes/FloatIfInstruction.src/M000048.html +0 -15
- data/doc/classes/FloatIfInstruction.src/M000049.html +0 -14
- data/doc/classes/FloatIfInstruction.src/M000050.html +0 -17
- data/doc/classes/FloatLessThanQInstruction.html +0 -218
- data/doc/classes/FloatLessThanQInstruction.src/M000039.html +0 -15
- data/doc/classes/FloatLessThanQInstruction.src/M000040.html +0 -16
- data/doc/classes/FloatLessThanQInstruction.src/M000041.html +0 -15
- data/doc/classes/FloatLessThanQInstruction.src/M000042.html +0 -15
- data/doc/classes/FloatMaxInstruction.html +0 -218
- data/doc/classes/FloatMaxInstruction.src/M000095.html +0 -15
- data/doc/classes/FloatMaxInstruction.src/M000096.html +0 -16
- data/doc/classes/FloatMaxInstruction.src/M000097.html +0 -15
- data/doc/classes/FloatMaxInstruction.src/M000098.html +0 -15
- data/doc/classes/FloatMinInstruction.html +0 -218
- data/doc/classes/FloatMinInstruction.src/M000099.html +0 -15
- data/doc/classes/FloatMinInstruction.src/M000100.html +0 -16
- data/doc/classes/FloatMinInstruction.src/M000101.html +0 -15
- data/doc/classes/FloatMinInstruction.src/M000102.html +0 -15
- data/doc/classes/FloatMultiplyInstruction.html +0 -218
- data/doc/classes/FloatMultiplyInstruction.src/M000083.html +0 -15
- data/doc/classes/FloatMultiplyInstruction.src/M000084.html +0 -16
- data/doc/classes/FloatMultiplyInstruction.src/M000085.html +0 -15
- data/doc/classes/FloatMultiplyInstruction.src/M000086.html +0 -15
- data/doc/classes/FloatNegativeInstruction.html +0 -218
- data/doc/classes/FloatNegativeInstruction.src/M000103.html +0 -15
- data/doc/classes/FloatNegativeInstruction.src/M000104.html +0 -15
- data/doc/classes/FloatNegativeInstruction.src/M000105.html +0 -15
- data/doc/classes/FloatNegativeInstruction.src/M000106.html +0 -15
- data/doc/classes/FloatPowerInstruction.html +0 -218
- data/doc/classes/FloatPowerInstruction.src/M000111.html +0 -15
- data/doc/classes/FloatPowerInstruction.src/M000112.html +0 -16
- data/doc/classes/FloatPowerInstruction.src/M000113.html +0 -20
- data/doc/classes/FloatPowerInstruction.src/M000114.html +0 -15
- data/doc/classes/FloatRandomInstruction.html +0 -218
- data/doc/classes/FloatRandomInstruction.src/M000191.html +0 -15
- data/doc/classes/FloatRandomInstruction.src/M000192.html +0 -14
- data/doc/classes/FloatRandomInstruction.src/M000193.html +0 -15
- data/doc/classes/FloatRandomInstruction.src/M000194.html +0 -15
- data/doc/classes/FloatSineInstruction.html +0 -218
- data/doc/classes/FloatSineInstruction.src/M000119.html +0 -15
- data/doc/classes/FloatSineInstruction.src/M000120.html +0 -15
- data/doc/classes/FloatSineInstruction.src/M000121.html +0 -15
- data/doc/classes/FloatSineInstruction.src/M000122.html +0 -15
- data/doc/classes/FloatSqrtInstruction.html +0 -218
- data/doc/classes/FloatSqrtInstruction.src/M000115.html +0 -15
- data/doc/classes/FloatSqrtInstruction.src/M000116.html +0 -15
- data/doc/classes/FloatSqrtInstruction.src/M000117.html +0 -19
- data/doc/classes/FloatSqrtInstruction.src/M000118.html +0 -15
- data/doc/classes/FloatSubtractInstruction.html +0 -218
- data/doc/classes/FloatSubtractInstruction.src/M000087.html +0 -15
- data/doc/classes/FloatSubtractInstruction.src/M000088.html +0 -16
- data/doc/classes/FloatSubtractInstruction.src/M000089.html +0 -15
- data/doc/classes/FloatSubtractInstruction.src/M000090.html +0 -15
- data/doc/classes/FloatTangentInstruction.html +0 -218
- data/doc/classes/FloatTangentInstruction.src/M000127.html +0 -15
- data/doc/classes/FloatTangentInstruction.src/M000128.html +0 -15
- data/doc/classes/FloatTangentInstruction.src/M000129.html +0 -15
- data/doc/classes/FloatTangentInstruction.src/M000130.html +0 -15
- data/doc/classes/FloatType.html +0 -196
- data/doc/classes/FloatType.src/M000243.html +0 -19
- data/doc/classes/FloatType.src/M000244.html +0 -15
- data/doc/classes/FloatType.src/M000245.html +0 -15
- data/doc/classes/Helpers.html +0 -161
- data/doc/classes/Helpers.src/M000343.html +0 -21
- data/doc/classes/Helpers.src/M000344.html +0 -24
- data/doc/classes/Instruction/InstructionMethodError.html +0 -110
- data/doc/classes/Instruction/NaNResultError.html +0 -110
- data/doc/classes/Instruction/NotEnoughStackItems.html +0 -110
- data/doc/classes/Instruction.html +0 -500
- data/doc/classes/Instruction.src/M000131.html +0 -17
- data/doc/classes/Instruction.src/M000132.html +0 -15
- data/doc/classes/Instruction.src/M000133.html +0 -15
- data/doc/classes/Instruction.src/M000134.html +0 -15
- data/doc/classes/Instruction.src/M000135.html +0 -15
- data/doc/classes/Instruction.src/M000136.html +0 -15
- data/doc/classes/Instruction.src/M000137.html +0 -15
- data/doc/classes/Instruction.src/M000138.html +0 -15
- data/doc/classes/Instruction.src/M000139.html +0 -22
- data/doc/classes/Instruction.src/M000140.html +0 -15
- data/doc/classes/Instruction.src/M000141.html +0 -25
- data/doc/classes/Instruction.src/M000142.html +0 -15
- data/doc/classes/Instruction.src/M000143.html +0 -15
- data/doc/classes/Instruction.src/M000144.html +0 -15
- data/doc/classes/Instruction.src/M000145.html +0 -15
- data/doc/classes/Instruction.src/M000146.html +0 -15
- data/doc/classes/InstructionNode.html +0 -161
- data/doc/classes/InstructionNode.src/M000247.html +0 -15
- data/doc/classes/InstructionNode.src/M000248.html +0 -16
- data/doc/classes/IntAbsInstruction.html +0 -218
- data/doc/classes/IntAbsInstruction.src/M000175.html +0 -15
- data/doc/classes/IntAbsInstruction.src/M000176.html +0 -15
- data/doc/classes/IntAbsInstruction.src/M000177.html +0 -15
- data/doc/classes/IntAbsInstruction.src/M000178.html +0 -15
- data/doc/classes/IntAddInstruction.html +0 -218
- data/doc/classes/IntAddInstruction.src/M000147.html +0 -15
- data/doc/classes/IntAddInstruction.src/M000148.html +0 -16
- data/doc/classes/IntAddInstruction.src/M000149.html +0 -15
- data/doc/classes/IntAddInstruction.src/M000150.html +0 -15
- data/doc/classes/IntDepthInstruction.html +0 -218
- data/doc/classes/IntDepthInstruction.src/M000211.html +0 -15
- data/doc/classes/IntDepthInstruction.src/M000212.html +0 -14
- data/doc/classes/IntDepthInstruction.src/M000213.html +0 -15
- data/doc/classes/IntDepthInstruction.src/M000214.html +0 -15
- data/doc/classes/IntDivideInstruction.html +0 -218
- data/doc/classes/IntDivideInstruction.src/M000155.html +0 -15
- data/doc/classes/IntDivideInstruction.src/M000156.html +0 -16
- data/doc/classes/IntDivideInstruction.src/M000157.html +0 -20
- data/doc/classes/IntDivideInstruction.src/M000158.html +0 -15
- data/doc/classes/IntDuplicateInstruction.html +0 -218
- data/doc/classes/IntDuplicateInstruction.src/M000203.html +0 -15
- data/doc/classes/IntDuplicateInstruction.src/M000204.html +0 -15
- data/doc/classes/IntDuplicateInstruction.src/M000205.html +0 -15
- data/doc/classes/IntDuplicateInstruction.src/M000206.html +0 -15
- data/doc/classes/IntEqualQInstruction.html +0 -218
- data/doc/classes/IntEqualQInstruction.src/M000023.html +0 -15
- data/doc/classes/IntEqualQInstruction.src/M000024.html +0 -16
- data/doc/classes/IntEqualQInstruction.src/M000025.html +0 -15
- data/doc/classes/IntEqualQInstruction.src/M000026.html +0 -15
- data/doc/classes/IntFlushInstruction.html +0 -218
- data/doc/classes/IntFlushInstruction.src/M000215.html +0 -15
- data/doc/classes/IntFlushInstruction.src/M000216.html +0 -14
- data/doc/classes/IntFlushInstruction.src/M000217.html +0 -14
- data/doc/classes/IntFlushInstruction.src/M000218.html +0 -15
- data/doc/classes/IntFromBoolInstruction.html +0 -218
- data/doc/classes/IntFromBoolInstruction.src/M000051.html +0 -15
- data/doc/classes/IntFromBoolInstruction.src/M000052.html +0 -15
- data/doc/classes/IntFromBoolInstruction.src/M000053.html +0 -15
- data/doc/classes/IntFromBoolInstruction.src/M000054.html +0 -15
- data/doc/classes/IntFromFloatInstruction.html +0 -218
- data/doc/classes/IntFromFloatInstruction.src/M000059.html +0 -15
- data/doc/classes/IntFromFloatInstruction.src/M000060.html +0 -15
- data/doc/classes/IntFromFloatInstruction.src/M000061.html +0 -15
- data/doc/classes/IntFromFloatInstruction.src/M000062.html +0 -15
- data/doc/classes/IntGreaterThanQInstruction.html +0 -218
- data/doc/classes/IntGreaterThanQInstruction.src/M000031.html +0 -15
- data/doc/classes/IntGreaterThanQInstruction.src/M000032.html +0 -16
- data/doc/classes/IntGreaterThanQInstruction.src/M000033.html +0 -15
- data/doc/classes/IntGreaterThanQInstruction.src/M000034.html +0 -15
- data/doc/classes/IntIfInstruction.html +0 -218
- data/doc/classes/IntIfInstruction.src/M000043.html +0 -16
- data/doc/classes/IntIfInstruction.src/M000044.html +0 -15
- data/doc/classes/IntIfInstruction.src/M000045.html +0 -14
- data/doc/classes/IntIfInstruction.src/M000046.html +0 -17
- data/doc/classes/IntLessThanQInstruction.html +0 -218
- data/doc/classes/IntLessThanQInstruction.src/M000027.html +0 -15
- data/doc/classes/IntLessThanQInstruction.src/M000028.html +0 -16
- data/doc/classes/IntLessThanQInstruction.src/M000029.html +0 -15
- data/doc/classes/IntLessThanQInstruction.src/M000030.html +0 -15
- data/doc/classes/IntMaxInstruction.html +0 -218
- data/doc/classes/IntMaxInstruction.src/M000167.html +0 -15
- data/doc/classes/IntMaxInstruction.src/M000168.html +0 -16
- data/doc/classes/IntMaxInstruction.src/M000169.html +0 -16
- data/doc/classes/IntMaxInstruction.src/M000170.html +0 -15
- data/doc/classes/IntMinInstruction.html +0 -218
- data/doc/classes/IntMinInstruction.src/M000171.html +0 -15
- data/doc/classes/IntMinInstruction.src/M000172.html +0 -16
- data/doc/classes/IntMinInstruction.src/M000173.html +0 -16
- data/doc/classes/IntMinInstruction.src/M000174.html +0 -15
- data/doc/classes/IntModuloInstruction.html +0 -218
- data/doc/classes/IntModuloInstruction.src/M000163.html +0 -15
- data/doc/classes/IntModuloInstruction.src/M000164.html +0 -16
- data/doc/classes/IntModuloInstruction.src/M000165.html +0 -20
- data/doc/classes/IntModuloInstruction.src/M000166.html +0 -15
- data/doc/classes/IntMultiplyInstruction.html +0 -218
- data/doc/classes/IntMultiplyInstruction.src/M000151.html +0 -15
- data/doc/classes/IntMultiplyInstruction.src/M000152.html +0 -16
- data/doc/classes/IntMultiplyInstruction.src/M000153.html +0 -15
- data/doc/classes/IntMultiplyInstruction.src/M000154.html +0 -15
- data/doc/classes/IntNegativeInstruction.html +0 -218
- data/doc/classes/IntNegativeInstruction.src/M000179.html +0 -15
- data/doc/classes/IntNegativeInstruction.src/M000180.html +0 -15
- data/doc/classes/IntNegativeInstruction.src/M000181.html +0 -15
- data/doc/classes/IntNegativeInstruction.src/M000182.html +0 -15
- data/doc/classes/IntPopInstruction.html +0 -218
- data/doc/classes/IntPopInstruction.src/M000195.html +0 -15
- data/doc/classes/IntPopInstruction.src/M000196.html +0 -15
- data/doc/classes/IntPopInstruction.src/M000197.html +0 -14
- data/doc/classes/IntPopInstruction.src/M000198.html +0 -14
- data/doc/classes/IntRandomInstruction.html +0 -218
- data/doc/classes/IntRandomInstruction.src/M000183.html +0 -15
- data/doc/classes/IntRandomInstruction.src/M000184.html +0 -14
- data/doc/classes/IntRandomInstruction.src/M000185.html +0 -15
- data/doc/classes/IntRandomInstruction.src/M000186.html +0 -15
- data/doc/classes/IntRotateInstruction.html +0 -218
- data/doc/classes/IntRotateInstruction.src/M000207.html +0 -15
- data/doc/classes/IntRotateInstruction.src/M000208.html +0 -17
- data/doc/classes/IntRotateInstruction.src/M000209.html +0 -14
- data/doc/classes/IntRotateInstruction.src/M000210.html +0 -17
- data/doc/classes/IntSubtractInstruction.html +0 -218
- data/doc/classes/IntSubtractInstruction.src/M000159.html +0 -15
- data/doc/classes/IntSubtractInstruction.src/M000160.html +0 -16
- data/doc/classes/IntSubtractInstruction.src/M000161.html +0 -16
- data/doc/classes/IntSubtractInstruction.src/M000162.html +0 -15
- data/doc/classes/IntSwapInstruction.html +0 -218
- data/doc/classes/IntSwapInstruction.src/M000199.html +0 -15
- data/doc/classes/IntSwapInstruction.src/M000200.html +0 -16
- data/doc/classes/IntSwapInstruction.src/M000201.html +0 -14
- data/doc/classes/IntSwapInstruction.src/M000202.html +0 -16
- data/doc/classes/IntType.html +0 -240
- data/doc/classes/IntType.src/M000235.html +0 -15
- data/doc/classes/IntType.src/M000236.html +0 -15
- data/doc/classes/IntType.src/M000237.html +0 -18
- data/doc/classes/IntType.src/M000238.html +0 -15
- data/doc/classes/IntType.src/M000239.html +0 -15
- data/doc/classes/LiteralNode.html +0 -183
- data/doc/classes/LiteralNode.src/M000251.html +0 -15
- data/doc/classes/LiteralNode.src/M000252.html +0 -16
- data/doc/classes/LiteralNode.src/M000253.html +0 -16
- data/doc/classes/Nudge/Channel.html +0 -437
- data/doc/classes/Nudge/Channel.src/M000286.html +0 -15
- data/doc/classes/Nudge/Channel.src/M000287.html +0 -19
- data/doc/classes/Nudge/Channel.src/M000288.html +0 -15
- data/doc/classes/Nudge/Channel.src/M000289.html +0 -15
- data/doc/classes/Nudge/Channel.src/M000290.html +0 -15
- data/doc/classes/Nudge/Channel.src/M000291.html +0 -19
- data/doc/classes/Nudge/Channel.src/M000292.html +0 -19
- data/doc/classes/Nudge/Channel.src/M000293.html +0 -17
- data/doc/classes/Nudge/Channel.src/M000294.html +0 -15
- data/doc/classes/Nudge/Channel.src/M000295.html +0 -20
- data/doc/classes/Nudge/Channel.src/M000296.html +0 -15
- data/doc/classes/Nudge/Channel.src/M000297.html +0 -17
- data/doc/classes/Nudge/Channel.src/M000298.html +0 -15
- data/doc/classes/Nudge/CodeBlock.html +0 -331
- data/doc/classes/Nudge/CodeBlock.src/M000263.html +0 -15
- data/doc/classes/Nudge/CodeBlock.src/M000264.html +0 -15
- data/doc/classes/Nudge/CodeBlock.src/M000265.html +0 -15
- data/doc/classes/Nudge/CodeBlock.src/M000266.html +0 -15
- data/doc/classes/Nudge/CodeBlock.src/M000267.html +0 -15
- data/doc/classes/Nudge/CodeBlock.src/M000268.html +0 -17
- data/doc/classes/Nudge/CodeBlock.src/M000269.html +0 -20
- data/doc/classes/Nudge/CodeBlock.src/M000270.html +0 -15
- data/doc/classes/Nudge/CodeBlock.src/M000271.html +0 -19
- data/doc/classes/Nudge/DeadLocation.html +0 -152
- data/doc/classes/Nudge/DeadLocation.src/M000334.html +0 -17
- data/doc/classes/Nudge/Erc.html +0 -335
- data/doc/classes/Nudge/Erc.src/M000278.html +0 -16
- data/doc/classes/Nudge/Erc.src/M000279.html +0 -15
- data/doc/classes/Nudge/Erc.src/M000280.html +0 -15
- data/doc/classes/Nudge/Erc.src/M000281.html +0 -15
- data/doc/classes/Nudge/Erc.src/M000282.html +0 -18
- data/doc/classes/Nudge/Erc.src/M000283.html +0 -15
- data/doc/classes/Nudge/Erc.src/M000284.html +0 -17
- data/doc/classes/Nudge/Erc.src/M000285.html +0 -15
- data/doc/classes/Nudge/Individual.html +0 -313
- data/doc/classes/Nudge/Individual.src/M000314.html +0 -21
- data/doc/classes/Nudge/Individual.src/M000315.html +0 -15
- data/doc/classes/Nudge/Individual.src/M000316.html +0 -15
- data/doc/classes/Nudge/Individual.src/M000317.html +0 -17
- data/doc/classes/Nudge/Individual.src/M000318.html +0 -25
- data/doc/classes/Nudge/InstructionPoint/InstructionNotFoundError.html +0 -110
- data/doc/classes/Nudge/InstructionPoint.html +0 -350
- data/doc/classes/Nudge/InstructionPoint.src/M000299.html +0 -15
- data/doc/classes/Nudge/InstructionPoint.src/M000300.html +0 -15
- data/doc/classes/Nudge/InstructionPoint.src/M000301.html +0 -17
- data/doc/classes/Nudge/InstructionPoint.src/M000302.html +0 -15
- data/doc/classes/Nudge/InstructionPoint.src/M000303.html +0 -17
- data/doc/classes/Nudge/InstructionPoint.src/M000304.html +0 -17
- data/doc/classes/Nudge/InstructionPoint.src/M000305.html +0 -17
- data/doc/classes/Nudge/InstructionPoint.src/M000306.html +0 -15
- data/doc/classes/Nudge/Interpreter.html +0 -369
- data/doc/classes/Nudge/Interpreter.src/M000257.html +0 -20
- data/doc/classes/Nudge/Interpreter.src/M000258.html +0 -19
- data/doc/classes/Nudge/Interpreter.src/M000259.html +0 -15
- data/doc/classes/Nudge/Interpreter.src/M000260.html +0 -19
- data/doc/classes/Nudge/Interpreter.src/M000261.html +0 -17
- data/doc/classes/Nudge/LiteralPoint.html +0 -291
- data/doc/classes/Nudge/LiteralPoint.src/M000272.html +0 -16
- data/doc/classes/Nudge/LiteralPoint.src/M000273.html +0 -15
- data/doc/classes/Nudge/LiteralPoint.src/M000274.html +0 -15
- data/doc/classes/Nudge/LiteralPoint.src/M000275.html +0 -18
- data/doc/classes/Nudge/LiteralPoint.src/M000276.html +0 -17
- data/doc/classes/Nudge/LiteralPoint.src/M000277.html +0 -15
- data/doc/classes/Nudge/Location.html +0 -525
- data/doc/classes/Nudge/Location.src/M000319.html +0 -19
- data/doc/classes/Nudge/Location.src/M000320.html +0 -15
- data/doc/classes/Nudge/Location.src/M000321.html +0 -26
- data/doc/classes/Nudge/Location.src/M000322.html +0 -15
- data/doc/classes/Nudge/Location.src/M000323.html +0 -20
- data/doc/classes/Nudge/Location.src/M000324.html +0 -16
- data/doc/classes/Nudge/Location.src/M000325.html +0 -25
- data/doc/classes/Nudge/Location.src/M000326.html +0 -15
- data/doc/classes/Nudge/Location.src/M000327.html +0 -21
- data/doc/classes/Nudge/Location.src/M000328.html +0 -16
- data/doc/classes/Nudge/Location.src/M000329.html +0 -15
- data/doc/classes/Nudge/Location.src/M000330.html +0 -16
- data/doc/classes/Nudge/Location.src/M000331.html +0 -20
- data/doc/classes/Nudge/Location.src/M000332.html +0 -17
- data/doc/classes/Nudge/Location.src/M000333.html +0 -17
- data/doc/classes/Nudge/NondominatedSubset.html +0 -196
- data/doc/classes/Nudge/NondominatedSubset.src/M000005.html +0 -19
- data/doc/classes/Nudge/NondominatedSubset.src/M000006.html +0 -19
- data/doc/classes/Nudge/NondominatedSubset.src/M000007.html +0 -25
- data/doc/classes/Nudge/NondominatedSubset.src/M000339.html +0 -19
- data/doc/classes/Nudge/NondominatedSubset.src/M000340.html +0 -19
- data/doc/classes/Nudge/NondominatedSubset.src/M000341.html +0 -25
- data/doc/classes/Nudge/PopulationResample.html +0 -175
- data/doc/classes/Nudge/PopulationResample.src/M000003.html +0 -22
- data/doc/classes/Nudge/PopulationResample.src/M000337.html +0 -22
- data/doc/classes/Nudge/ProgramPoint.html +0 -148
- data/doc/classes/Nudge/ProgramPoint.src/M000262.html +0 -15
- data/doc/classes/Nudge/RandomGuess.html +0 -176
- data/doc/classes/Nudge/RandomGuess.src/M000002.html +0 -21
- data/doc/classes/Nudge/RandomGuess.src/M000336.html +0 -21
- data/doc/classes/Nudge/ResampleValues.html +0 -169
- data/doc/classes/Nudge/ResampleValues.src/M000004.html +0 -36
- data/doc/classes/Nudge/ResampleValues.src/M000338.html +0 -36
- data/doc/classes/Nudge/SearchOperator.html +0 -175
- data/doc/classes/Nudge/SearchOperator.src/M000001.html +0 -15
- data/doc/classes/Nudge/SearchOperator.src/M000335.html +0 -15
- data/doc/classes/Nudge/Stack.html +0 -350
- data/doc/classes/Nudge/Stack.src/M000307.html +0 -15
- data/doc/classes/Nudge/Stack.src/M000308.html +0 -15
- data/doc/classes/Nudge/Stack.src/M000309.html +0 -18
- data/doc/classes/Nudge/Stack.src/M000310.html +0 -15
- data/doc/classes/Nudge/Stack.src/M000311.html +0 -15
- data/doc/classes/Nudge/Stack.src/M000312.html +0 -15
- data/doc/classes/Nudge/Stack.src/M000313.html +0 -15
- data/doc/classes/Nudge/UniformBackboneCrossover.html +0 -152
- data/doc/classes/Nudge/UniformBackboneCrossover.src/M000008.html +0 -35
- data/doc/classes/Nudge/UniformBackboneCrossover.src/M000342.html +0 -35
- data/doc/classes/Nudge.html +0 -174
- data/doc/classes/NudgeType.html +0 -363
- data/doc/classes/NudgeType.src/M000225.html +0 -17
- data/doc/classes/NudgeType.src/M000226.html +0 -15
- data/doc/classes/NudgeType.src/M000227.html +0 -15
- data/doc/classes/NudgeType.src/M000228.html +0 -15
- data/doc/classes/NudgeType.src/M000229.html +0 -15
- data/doc/classes/NudgeType.src/M000230.html +0 -15
- data/doc/classes/NudgeType.src/M000231.html +0 -15
- data/doc/classes/NudgeType.src/M000232.html +0 -15
- data/doc/classes/NudgeType.src/M000233.html +0 -15
- data/doc/classes/NudgeType.src/M000234.html +0 -15
- data/doc/created.rid +0 -1
- data/doc/files/lib/instructions/bool_basics_rb.html +0 -90
- data/doc/files/lib/instructions/comparisons_rb.html +0 -90
- data/doc/files/lib/instructions/conditionals_rb.html +0 -90
- data/doc/files/lib/instructions/conversions_rb.html +0 -90
- data/doc/files/lib/instructions/exec_rb.html +0 -90
- data/doc/files/lib/instructions/float_arithmetic_rb.html +0 -90
- data/doc/files/lib/instructions/float_transcendental_rb.html +0 -90
- data/doc/files/lib/instructions/infrastructure_rb.html +0 -100
- data/doc/files/lib/instructions/int_arithmetic_rb.html +0 -90
- data/doc/files/lib/instructions/random_value_rb.html +0 -90
- data/doc/files/lib/instructions/stack_manipulation_rb.html +0 -90
- data/doc/files/lib/interpreter/grammars/nudge_language_helpers_rb.html +0 -97
- data/doc/files/lib/interpreter/grammars/nudge_language_treetop.html +0 -180
- data/doc/files/lib/interpreter/interpreter_rb.html +0 -90
- data/doc/files/lib/interpreter/programPoints_rb.html +0 -90
- data/doc/files/lib/interpreter/stack_rb.html +0 -90
- data/doc/files/lib/interpreter/types/codeType_rb.html +0 -157
- data/doc/files/lib/interpreter/types/codeType_rb.src/M000001.html +0 -15
- data/doc/files/lib/interpreter/types/codeType_rb.src/M000002.html +0 -15
- data/doc/files/lib/interpreter/types/pushTypes_rb.html +0 -107
- data/doc/files/lib/nudge_rb.html +0 -152
- data/doc/files/lib/search/evaluators/structural_complexity_rb.html +0 -90
- data/doc/files/lib/search/helpers_rb.html +0 -90
- data/doc/files/lib/search/individual/individual_rb.html +0 -90
- data/doc/files/lib/search/locations/location_rb.html +0 -100
- data/doc/files/lib/search/operators/basic_operators_rb.html +0 -90
- data/doc/fr_class_index.html +0 -191
- data/doc/fr_file_index.html +0 -71
- data/doc/fr_method_index.html +0 -711
- data/doc/index.html +0 -21
- data/doc/rdoc-style.css +0 -299
- data/features/parser_recognizes_nudge_language.feature +0 -9
- data/lib/instructions/bool_basics.rb +0 -85
- data/lib/instructions/comparisons.rb +0 -152
- data/lib/instructions/conditionals.rb +0 -44
- data/lib/instructions/conversions.rb +0 -94
- data/lib/instructions/exec.rb +0 -154
- data/lib/instructions/float_arithmetic.rb +0 -201
- data/lib/instructions/float_transcendental.rb +0 -47
- data/lib/instructions/int_arithmetic.rb +0 -160
- data/lib/instructions/name_basics.rb +0 -44
- data/lib/instructions/name_bindings.rb +0 -65
- data/lib/instructions/random_value.rb +0 -43
- data/lib/instructions/stack_manipulation.rb +0 -739
- data/lib/interpreter/grammars/nudge_language.treetop +0 -83
- data/lib/interpreter/grammars/nudge_language_helpers.rb +0 -64
- data/lib/search/experiments/experiment.rb +0 -53
- data/lib/search/helpers.rb +0 -22
- data/lib/search/individual/batch.rb +0 -25
- data/lib/search/individual/individual.rb +0 -145
- data/lib/search/operators/basic_operators.rb +0 -230
- data/lib/search/operators/evaluators.rb +0 -107
- data/lib/search/operators/samplers_and_selectors.rb +0 -123
- data/lib/search/stations/station.rb +0 -147
- data/nudge.gemspec +0 -706
- data/push_language_coverage.md +0 -177
- data/script/console +0 -10
- data/script/destroy +0 -14
- data/script/generate +0 -14
- data/spec/data/couchdb_spec.rb +0 -2
- data/spec/instructions/bool_basics_spec.rb +0 -97
- data/spec/instructions/bool_stack_spec.rb +0 -391
- data/spec/instructions/code_basics_spec.rb +0 -43
- data/spec/instructions/code_stack_spec.rb +0 -382
- data/spec/instructions/comparisons_spec.rb +0 -486
- data/spec/instructions/conditionals_spec.rb +0 -162
- data/spec/instructions/conversions_spec.rb +0 -92
- data/spec/instructions/exec_spec.rb +0 -883
- data/spec/instructions/float_calculations_spec.rb +0 -148
- data/spec/instructions/float_stack_spec.rb +0 -382
- data/spec/instructions/float_transcendental_spec.rb +0 -89
- data/spec/instructions/int_calculations_spec.rb +0 -125
- data/spec/instructions/int_stack_spec.rb +0 -398
- data/spec/instructions/name_basics_spec.rb +0 -158
- data/spec/instructions/name_bindings_spec.rb +0 -257
- data/spec/instructions/name_stack_spec.rb +0 -382
- data/spec/instructions/random_values_spec.rb +0 -68
- data/spec/integration/search_integration.rb +0 -67
- data/spec/interpreter/channel_spec.rb +0 -92
- data/spec/interpreter/codeblock_spec.rb +0 -135
- data/spec/interpreter/erc_spec.rb +0 -130
- data/spec/interpreter/literal_spec.rb +0 -94
- data/spec/interpreter/parser_spec.rb +0 -324
- data/spec/search/batch_spec.rb +0 -30
- data/spec/search/experiments/experiment_spec.rb +0 -101
- data/spec/search/helpers_spec.rb +0 -59
- data/spec/search/individual_spec.rb +0 -356
- data/spec/search/operators/any_one_sampler_spec.rb +0 -40
- data/spec/search/operators/dominated_quantile_spec.rb +0 -111
- data/spec/search/operators/duplicate_genomes_spec.rb +0 -35
- data/spec/search/operators/evaluators/program_point_evaluator_spec.rb +0 -43
- data/spec/search/operators/evaluators/test_case_evaluator_spec.rb +0 -133
- data/spec/search/operators/infrastructure_spec.rb +0 -47
- data/spec/search/operators/most_dominated_subset_spec.rb +0 -47
- data/spec/search/operators/nondominated_subset_spec.rb +0 -97
- data/spec/search/operators/pointCrossover_spec.rb +0 -55
- data/spec/search/operators/pointDeletion_spec.rb +0 -57
- data/spec/search/operators/pointMutation_spec.rb +0 -71
- data/spec/search/operators/random_guess_spec.rb +0 -51
- data/spec/search/operators/resample_and_clone_spec.rb +0 -50
- data/spec/search/operators/resample_values_spec.rb +0 -126
- data/spec/search/operators/sizePreservingMutation_spec.rb +0 -2
- data/spec/search/operators/uniformBackboneCrossover_spec.rb +0 -63
- data/spec/search/stations/station_spec.rb +0 -496
- data/test/test_generator_helper.rb +0 -29
- data/test/test_nudge_generator.rb +0 -43
- /data/lib/instructions/{code_basics.rb → code/code_noop.rb} +0 -0
- /data/{_spikes/nested_parsing/nested.rb → spec/support/shared_examples.rb} +0 -0
data/doc/fr_method_index.html
DELETED
@@ -1,711 +0,0 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
2
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
-
<!--
|
5
|
-
|
6
|
-
Methods [RDoc Documentation]
|
7
|
-
|
8
|
-
-->
|
9
|
-
<head>
|
10
|
-
<title>Methods [RDoc Documentation]</title>
|
11
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
12
|
-
<link rel="stylesheet" href="rdoc-style.css" type="text/css" />
|
13
|
-
<base target="docwin" />
|
14
|
-
</head>
|
15
|
-
<body>
|
16
|
-
<div class="index">
|
17
|
-
<h1 class="section-bar">Methods</h1>
|
18
|
-
<div id="index-entries">
|
19
|
-
|
20
|
-
<a href="classes/Instruction.html#M000137">activate (Instruction)</a><br />
|
21
|
-
|
22
|
-
<a href="classes/NudgeType.html#M000232">activate (NudgeType)</a><br />
|
23
|
-
|
24
|
-
<a href="classes/NudgeType.html#M000229">active? (NudgeType)</a><br />
|
25
|
-
|
26
|
-
<a href="classes/Instruction.html#M000135">active? (Instruction)</a><br />
|
27
|
-
|
28
|
-
<a href="classes/Instruction.html#M000133">active_instructions (Instruction)</a><br />
|
29
|
-
|
30
|
-
<a href="classes/NudgeType.html#M000228">active_types (NudgeType)</a><br />
|
31
|
-
|
32
|
-
<a href="classes/Nudge/Location.html#M000324">add_individual (Nudge::Location)</a><br />
|
33
|
-
|
34
|
-
<a href="classes/Instruction.html#M000132">all_instructions (Instruction)</a><br />
|
35
|
-
|
36
|
-
<a href="classes/Nudge/NondominatedSubset.html#M000339">all_known_scores (Nudge::NondominatedSubset)</a><br />
|
37
|
-
|
38
|
-
<a href="classes/NudgeType.html#M000231">all_off (NudgeType)</a><br />
|
39
|
-
|
40
|
-
<a href="classes/Instruction.html#M000134">all_off (Instruction)</a><br />
|
41
|
-
|
42
|
-
<a href="classes/Nudge/NondominatedSubset.html#M000340">all_shared_scores (Nudge::NondominatedSubset)</a><br />
|
43
|
-
|
44
|
-
<a href="classes/NudgeType.html#M000226">all_types (NudgeType)</a><br />
|
45
|
-
|
46
|
-
<a href="classes/Nudge/Channel.html#M000293">any (Nudge::Channel)</a><br />
|
47
|
-
|
48
|
-
<a href="classes/Nudge/Erc.html#M000284">any (Nudge::Erc)</a><br />
|
49
|
-
|
50
|
-
<a href="classes/Nudge/LiteralPoint.html#M000276">any (Nudge::LiteralPoint)</a><br />
|
51
|
-
|
52
|
-
<a href="classes/Nudge/InstructionPoint.html#M000305">any (Nudge::InstructionPoint)</a><br />
|
53
|
-
|
54
|
-
<a href="classes/CodeType.html#M000221">any_instruction (CodeType)</a><br />
|
55
|
-
|
56
|
-
<a href="classes/CodeType.html#M000222">any_reference (CodeType)</a><br />
|
57
|
-
|
58
|
-
<a href="classes/CodeType.html#M000220">any_type (CodeType)</a><br />
|
59
|
-
|
60
|
-
<a href="classes/BoolType.html#M000242">any_value (BoolType)</a><br />
|
61
|
-
|
62
|
-
<a href="classes/FloatType.html#M000245">any_value (FloatType)</a><br />
|
63
|
-
|
64
|
-
<a href="files/lib/interpreter/types/codeType_rb.html#M000002">any_value (lib/interpreter/types/codeType.rb)</a><br />
|
65
|
-
|
66
|
-
<a href="classes/IntType.html#M000239">any_value (IntType)</a><br />
|
67
|
-
|
68
|
-
<a href="classes/Nudge/Channel.html#M000291">bind_name (Nudge::Channel)</a><br />
|
69
|
-
|
70
|
-
<a href="classes/Nudge/Channel.html#M000287">bind_variable (Nudge::Channel)</a><br />
|
71
|
-
|
72
|
-
<a href="classes/Nudge/Location.html#M000323">breeding_pool (Nudge::Location)</a><br />
|
73
|
-
|
74
|
-
<a href="classes/ChannelNode.html#M000249">channel_name (ChannelNode)</a><br />
|
75
|
-
|
76
|
-
<a href="classes/Nudge/InstructionPoint.html#M000301">classLookup (Nudge::InstructionPoint)</a><br />
|
77
|
-
|
78
|
-
<a href="classes/Nudge/InstructionPoint.html#M000300">className (Nudge::InstructionPoint)</a><br />
|
79
|
-
|
80
|
-
<a href="classes/IntAddInstruction.html#M000150">cleanup (IntAddInstruction)</a><br />
|
81
|
-
|
82
|
-
<a href="classes/Nudge/Stack.html#M000308">cleanup (Nudge::Stack)</a><br />
|
83
|
-
|
84
|
-
<a href="classes/FloatDivideInstruction.html#M000094">cleanup (FloatDivideInstruction)</a><br />
|
85
|
-
|
86
|
-
<a href="classes/IntGreaterThanQInstruction.html#M000034">cleanup (IntGreaterThanQInstruction)</a><br />
|
87
|
-
|
88
|
-
<a href="classes/IntEqualQInstruction.html#M000026">cleanup (IntEqualQInstruction)</a><br />
|
89
|
-
|
90
|
-
<a href="classes/IntLessThanQInstruction.html#M000030">cleanup (IntLessThanQInstruction)</a><br />
|
91
|
-
|
92
|
-
<a href="classes/IntAbsInstruction.html#M000178">cleanup (IntAbsInstruction)</a><br />
|
93
|
-
|
94
|
-
<a href="classes/FloatGreaterThanQInstruction.html#M000038">cleanup (FloatGreaterThanQInstruction)</a><br />
|
95
|
-
|
96
|
-
<a href="classes/Nudge/Location.html#M000320">cleanup (Nudge::Location)</a><br />
|
97
|
-
|
98
|
-
<a href="classes/BoolNotInstruction.html#M000022">cleanup (BoolNotInstruction)</a><br />
|
99
|
-
|
100
|
-
<a href="classes/FloatTangentInstruction.html#M000130">cleanup (FloatTangentInstruction)</a><br />
|
101
|
-
|
102
|
-
<a href="classes/FloatLessThanQInstruction.html#M000042">cleanup (FloatLessThanQInstruction)</a><br />
|
103
|
-
|
104
|
-
<a href="classes/IntDivideInstruction.html#M000158">cleanup (IntDivideInstruction)</a><br />
|
105
|
-
|
106
|
-
<a href="classes/BoolEqualQInstruction.html#M000018">cleanup (BoolEqualQInstruction)</a><br />
|
107
|
-
|
108
|
-
<a href="classes/IntNegativeInstruction.html#M000182">cleanup (IntNegativeInstruction)</a><br />
|
109
|
-
|
110
|
-
<a href="classes/IntIfInstruction.html#M000046">cleanup (IntIfInstruction)</a><br />
|
111
|
-
|
112
|
-
<a href="classes/IntDepthInstruction.html#M000214">cleanup (IntDepthInstruction)</a><br />
|
113
|
-
|
114
|
-
<a href="classes/FloatMaxInstruction.html#M000098">cleanup (FloatMaxInstruction)</a><br />
|
115
|
-
|
116
|
-
<a href="classes/FloatCosineInstruction.html#M000126">cleanup (FloatCosineInstruction)</a><br />
|
117
|
-
|
118
|
-
<a href="classes/FloatIfInstruction.html#M000050">cleanup (FloatIfInstruction)</a><br />
|
119
|
-
|
120
|
-
<a href="classes/IntFlushInstruction.html#M000218">cleanup (IntFlushInstruction)</a><br />
|
121
|
-
|
122
|
-
<a href="classes/FloatSubtractInstruction.html#M000090">cleanup (FloatSubtractInstruction)</a><br />
|
123
|
-
|
124
|
-
<a href="classes/IntRandomInstruction.html#M000186">cleanup (IntRandomInstruction)</a><br />
|
125
|
-
|
126
|
-
<a href="classes/IntFromBoolInstruction.html#M000054">cleanup (IntFromBoolInstruction)</a><br />
|
127
|
-
|
128
|
-
<a href="classes/FloatSineInstruction.html#M000122">cleanup (FloatSineInstruction)</a><br />
|
129
|
-
|
130
|
-
<a href="classes/BoolXorInstruction.html#M000014">cleanup (BoolXorInstruction)</a><br />
|
131
|
-
|
132
|
-
<a href="classes/BoolRandomInstruction.html#M000190">cleanup (BoolRandomInstruction)</a><br />
|
133
|
-
|
134
|
-
<a href="classes/FloatFromBoolInstruction.html#M000058">cleanup (FloatFromBoolInstruction)</a><br />
|
135
|
-
|
136
|
-
<a href="classes/FloatSqrtInstruction.html#M000118">cleanup (FloatSqrtInstruction)</a><br />
|
137
|
-
|
138
|
-
<a href="classes/IntRotateInstruction.html#M000210">cleanup (IntRotateInstruction)</a><br />
|
139
|
-
|
140
|
-
<a href="classes/Instruction.html#M000145">cleanup (Instruction)</a><br />
|
141
|
-
|
142
|
-
<a href="classes/IntFromFloatInstruction.html#M000062">cleanup (IntFromFloatInstruction)</a><br />
|
143
|
-
|
144
|
-
<a href="classes/IntSubtractInstruction.html#M000162">cleanup (IntSubtractInstruction)</a><br />
|
145
|
-
|
146
|
-
<a href="classes/FloatRandomInstruction.html#M000194">cleanup (FloatRandomInstruction)</a><br />
|
147
|
-
|
148
|
-
<a href="classes/FloatPowerInstruction.html#M000114">cleanup (FloatPowerInstruction)</a><br />
|
149
|
-
|
150
|
-
<a href="classes/FloatFromIntInstruction.html#M000066">cleanup (FloatFromIntInstruction)</a><br />
|
151
|
-
|
152
|
-
<a href="classes/IntMultiplyInstruction.html#M000154">cleanup (IntMultiplyInstruction)</a><br />
|
153
|
-
|
154
|
-
<a href="classes/IntPopInstruction.html#M000198">cleanup (IntPopInstruction)</a><br />
|
155
|
-
|
156
|
-
<a href="classes/FloatAbsInstruction.html#M000110">cleanup (FloatAbsInstruction)</a><br />
|
157
|
-
|
158
|
-
<a href="classes/BoolFromIntInstruction.html#M000070">cleanup (BoolFromIntInstruction)</a><br />
|
159
|
-
|
160
|
-
<a href="classes/FloatMultiplyInstruction.html#M000086">cleanup (FloatMultiplyInstruction)</a><br />
|
161
|
-
|
162
|
-
<a href="classes/BoolOrInstruction.html#M000010">cleanup (BoolOrInstruction)</a><br />
|
163
|
-
|
164
|
-
<a href="classes/IntSwapInstruction.html#M000202">cleanup (IntSwapInstruction)</a><br />
|
165
|
-
|
166
|
-
<a href="classes/BoolFromFloatInstruction.html#M000074">cleanup (BoolFromFloatInstruction)</a><br />
|
167
|
-
|
168
|
-
<a href="classes/FloatMinInstruction.html#M000102">cleanup (FloatMinInstruction)</a><br />
|
169
|
-
|
170
|
-
<a href="classes/IntMinInstruction.html#M000174">cleanup (IntMinInstruction)</a><br />
|
171
|
-
|
172
|
-
<a href="classes/FloatNegativeInstruction.html#M000106">cleanup (FloatNegativeInstruction)</a><br />
|
173
|
-
|
174
|
-
<a href="classes/IntMaxInstruction.html#M000170">cleanup (IntMaxInstruction)</a><br />
|
175
|
-
|
176
|
-
<a href="classes/IntModuloInstruction.html#M000166">cleanup (IntModuloInstruction)</a><br />
|
177
|
-
|
178
|
-
<a href="classes/BoolAndInstruction.html#M000006">cleanup (BoolAndInstruction)</a><br />
|
179
|
-
|
180
|
-
<a href="classes/IntDuplicateInstruction.html#M000206">cleanup (IntDuplicateInstruction)</a><br />
|
181
|
-
|
182
|
-
<a href="classes/FloatAddInstruction.html#M000082">cleanup (FloatAddInstruction)</a><br />
|
183
|
-
|
184
|
-
<a href="classes/ExecPopInstruction.html#M000078">cleanup (ExecPopInstruction)</a><br />
|
185
|
-
|
186
|
-
<a href="classes/Nudge/CodeBlock.html#M000267">contents (Nudge::CodeBlock)</a><br />
|
187
|
-
|
188
|
-
<a href="classes/Nudge/CodeBlock.html#M000266">contents= (Nudge::CodeBlock)</a><br />
|
189
|
-
|
190
|
-
<a href="classes/Nudge/Location.html#M000333">core_cycle (Nudge::Location)</a><br />
|
191
|
-
|
192
|
-
<a href="classes/Nudge/Location.html#M000331">cull (Nudge::Location)</a><br />
|
193
|
-
|
194
|
-
<a href="classes/Nudge/Location.html#M000329">cull? (Nudge::Location)</a><br />
|
195
|
-
|
196
|
-
<a href="classes/Nudge/Location.html#M000330">cull_order (Nudge::Location)</a><br />
|
197
|
-
|
198
|
-
<a href="classes/NudgeType.html#M000230">deactivate (NudgeType)</a><br />
|
199
|
-
|
200
|
-
<a href="classes/Instruction.html#M000136">deactivate (Instruction)</a><br />
|
201
|
-
|
202
|
-
<a href="classes/IntType.html#M000236">defaultHighest (IntType)</a><br />
|
203
|
-
|
204
|
-
<a href="classes/IntType.html#M000235">defaultLowest (IntType)</a><br />
|
205
|
-
|
206
|
-
<a href="classes/Nudge/Stack.html#M000313">depth (Nudge::Stack)</a><br />
|
207
|
-
|
208
|
-
<a href="classes/FloatAbsInstruction.html#M000109">derive (FloatAbsInstruction)</a><br />
|
209
|
-
|
210
|
-
<a href="classes/IntDepthInstruction.html#M000213">derive (IntDepthInstruction)</a><br />
|
211
|
-
|
212
|
-
<a href="classes/FloatMaxInstruction.html#M000097">derive (FloatMaxInstruction)</a><br />
|
213
|
-
|
214
|
-
<a href="classes/IntFlushInstruction.html#M000217">derive (IntFlushInstruction)</a><br />
|
215
|
-
|
216
|
-
<a href="classes/FloatSubtractInstruction.html#M000089">derive (FloatSubtractInstruction)</a><br />
|
217
|
-
|
218
|
-
<a href="classes/IntRotateInstruction.html#M000209">derive (IntRotateInstruction)</a><br />
|
219
|
-
|
220
|
-
<a href="classes/FloatMinInstruction.html#M000101">derive (FloatMinInstruction)</a><br />
|
221
|
-
|
222
|
-
<a href="classes/FloatMultiplyInstruction.html#M000085">derive (FloatMultiplyInstruction)</a><br />
|
223
|
-
|
224
|
-
<a href="classes/FloatAddInstruction.html#M000081">derive (FloatAddInstruction)</a><br />
|
225
|
-
|
226
|
-
<a href="classes/IntDuplicateInstruction.html#M000205">derive (IntDuplicateInstruction)</a><br />
|
227
|
-
|
228
|
-
<a href="classes/FloatNegativeInstruction.html#M000105">derive (FloatNegativeInstruction)</a><br />
|
229
|
-
|
230
|
-
<a href="classes/ExecPopInstruction.html#M000077">derive (ExecPopInstruction)</a><br />
|
231
|
-
|
232
|
-
<a href="classes/BoolFromFloatInstruction.html#M000073">derive (BoolFromFloatInstruction)</a><br />
|
233
|
-
|
234
|
-
<a href="classes/IntSwapInstruction.html#M000201">derive (IntSwapInstruction)</a><br />
|
235
|
-
|
236
|
-
<a href="classes/FloatDivideInstruction.html#M000093">derive (FloatDivideInstruction)</a><br />
|
237
|
-
|
238
|
-
<a href="classes/BoolFromIntInstruction.html#M000069">derive (BoolFromIntInstruction)</a><br />
|
239
|
-
|
240
|
-
<a href="classes/IntModuloInstruction.html#M000165">derive (IntModuloInstruction)</a><br />
|
241
|
-
|
242
|
-
<a href="classes/IntPopInstruction.html#M000197">derive (IntPopInstruction)</a><br />
|
243
|
-
|
244
|
-
<a href="classes/FloatPowerInstruction.html#M000113">derive (FloatPowerInstruction)</a><br />
|
245
|
-
|
246
|
-
<a href="classes/FloatFromIntInstruction.html#M000065">derive (FloatFromIntInstruction)</a><br />
|
247
|
-
|
248
|
-
<a href="classes/IntFromFloatInstruction.html#M000061">derive (IntFromFloatInstruction)</a><br />
|
249
|
-
|
250
|
-
<a href="classes/FloatRandomInstruction.html#M000193">derive (FloatRandomInstruction)</a><br />
|
251
|
-
|
252
|
-
<a href="classes/FloatSqrtInstruction.html#M000117">derive (FloatSqrtInstruction)</a><br />
|
253
|
-
|
254
|
-
<a href="classes/IntSubtractInstruction.html#M000161">derive (IntSubtractInstruction)</a><br />
|
255
|
-
|
256
|
-
<a href="classes/FloatFromBoolInstruction.html#M000057">derive (FloatFromBoolInstruction)</a><br />
|
257
|
-
|
258
|
-
<a href="classes/BoolRandomInstruction.html#M000189">derive (BoolRandomInstruction)</a><br />
|
259
|
-
|
260
|
-
<a href="classes/FloatSineInstruction.html#M000121">derive (FloatSineInstruction)</a><br />
|
261
|
-
|
262
|
-
<a href="classes/IntAddInstruction.html#M000149">derive (IntAddInstruction)</a><br />
|
263
|
-
|
264
|
-
<a href="classes/IntFromBoolInstruction.html#M000053">derive (IntFromBoolInstruction)</a><br />
|
265
|
-
|
266
|
-
<a href="classes/IntRandomInstruction.html#M000185">derive (IntRandomInstruction)</a><br />
|
267
|
-
|
268
|
-
<a href="classes/FloatCosineInstruction.html#M000125">derive (FloatCosineInstruction)</a><br />
|
269
|
-
|
270
|
-
<a href="classes/FloatIfInstruction.html#M000049">derive (FloatIfInstruction)</a><br />
|
271
|
-
|
272
|
-
<a href="classes/IntIfInstruction.html#M000045">derive (IntIfInstruction)</a><br />
|
273
|
-
|
274
|
-
<a href="classes/IntNegativeInstruction.html#M000181">derive (IntNegativeInstruction)</a><br />
|
275
|
-
|
276
|
-
<a href="classes/FloatTangentInstruction.html#M000129">derive (FloatTangentInstruction)</a><br />
|
277
|
-
|
278
|
-
<a href="classes/FloatLessThanQInstruction.html#M000041">derive (FloatLessThanQInstruction)</a><br />
|
279
|
-
|
280
|
-
<a href="classes/FloatGreaterThanQInstruction.html#M000037">derive (FloatGreaterThanQInstruction)</a><br />
|
281
|
-
|
282
|
-
<a href="classes/IntGreaterThanQInstruction.html#M000033">derive (IntGreaterThanQInstruction)</a><br />
|
283
|
-
|
284
|
-
<a href="classes/IntLessThanQInstruction.html#M000029">derive (IntLessThanQInstruction)</a><br />
|
285
|
-
|
286
|
-
<a href="classes/IntEqualQInstruction.html#M000025">derive (IntEqualQInstruction)</a><br />
|
287
|
-
|
288
|
-
<a href="classes/BoolNotInstruction.html#M000021">derive (BoolNotInstruction)</a><br />
|
289
|
-
|
290
|
-
<a href="classes/BoolEqualQInstruction.html#M000017">derive (BoolEqualQInstruction)</a><br />
|
291
|
-
|
292
|
-
<a href="classes/BoolXorInstruction.html#M000013">derive (BoolXorInstruction)</a><br />
|
293
|
-
|
294
|
-
<a href="classes/IntAbsInstruction.html#M000177">derive (IntAbsInstruction)</a><br />
|
295
|
-
|
296
|
-
<a href="classes/BoolOrInstruction.html#M000009">derive (BoolOrInstruction)</a><br />
|
297
|
-
|
298
|
-
<a href="classes/IntMinInstruction.html#M000173">derive (IntMinInstruction)</a><br />
|
299
|
-
|
300
|
-
<a href="classes/BoolAndInstruction.html#M000005">derive (BoolAndInstruction)</a><br />
|
301
|
-
|
302
|
-
<a href="classes/IntMaxInstruction.html#M000169">derive (IntMaxInstruction)</a><br />
|
303
|
-
|
304
|
-
<a href="classes/IntDivideInstruction.html#M000157">derive (IntDivideInstruction)</a><br />
|
305
|
-
|
306
|
-
<a href="classes/Instruction.html#M000144">derive (Instruction)</a><br />
|
307
|
-
|
308
|
-
<a href="classes/IntMultiplyInstruction.html#M000153">derive (IntMultiplyInstruction)</a><br />
|
309
|
-
|
310
|
-
<a href="classes/Nudge/Individual.html#M000318">dominated_by? (Nudge::Individual)</a><br />
|
311
|
-
|
312
|
-
<a href="classes/Helpers.html#M000343">dominated_by? (Helpers)</a><br />
|
313
|
-
|
314
|
-
<a href="classes/Helpers.html#M000344">domination_classes (Helpers)</a><br />
|
315
|
-
|
316
|
-
<a href="classes/Nudge/Location.html#M000322">flows_into (Nudge::Location)</a><br />
|
317
|
-
|
318
|
-
<a href="classes/FloatType.html#M000244">from_s (FloatType)</a><br />
|
319
|
-
|
320
|
-
<a href="classes/BoolType.html#M000241">from_s (BoolType)</a><br />
|
321
|
-
|
322
|
-
<a href="classes/IntType.html#M000238">from_s (IntType)</a><br />
|
323
|
-
|
324
|
-
<a href="classes/NudgeType.html#M000234">from_s (NudgeType)</a><br />
|
325
|
-
|
326
|
-
<a href="files/lib/interpreter/types/codeType_rb.html#M000001">from_s (lib/interpreter/types/codeType.rb)</a><br />
|
327
|
-
|
328
|
-
<a href="classes/Nudge/RandomGuess.html#M000336">generate (Nudge::RandomGuess)</a><br />
|
329
|
-
|
330
|
-
<a href="classes/Nudge/Location.html#M000332">generate (Nudge::Location)</a><br />
|
331
|
-
|
332
|
-
<a href="classes/Nudge/UniformBackboneCrossover.html#M000342">generate (Nudge::UniformBackboneCrossover)</a><br />
|
333
|
-
|
334
|
-
<a href="classes/Nudge/ResampleValues.html#M000338">generate (Nudge::ResampleValues)</a><br />
|
335
|
-
|
336
|
-
<a href="classes/Nudge/NondominatedSubset.html#M000341">generate (Nudge::NondominatedSubset)</a><br />
|
337
|
-
|
338
|
-
<a href="classes/Nudge/PopulationResample.html#M000337">generate (Nudge::PopulationResample)</a><br />
|
339
|
-
|
340
|
-
<a href="classes/Nudge/Channel.html#M000295">go (Nudge::Channel)</a><br />
|
341
|
-
|
342
|
-
<a href="classes/Nudge/CodeBlock.html#M000270">go (Nudge::CodeBlock)</a><br />
|
343
|
-
|
344
|
-
<a href="classes/Instruction.html#M000141">go (Instruction)</a><br />
|
345
|
-
|
346
|
-
<a href="classes/Nudge/Erc.html#M000280">go (Nudge::Erc)</a><br />
|
347
|
-
|
348
|
-
<a href="classes/Nudge/LiteralPoint.html#M000273">go (Nudge::LiteralPoint)</a><br />
|
349
|
-
|
350
|
-
<a href="classes/Nudge/InstructionPoint.html#M000303">go (Nudge::InstructionPoint)</a><br />
|
351
|
-
|
352
|
-
<a href="classes/Instruction.html#M000131">inherited (Instruction)</a><br />
|
353
|
-
|
354
|
-
<a href="classes/NudgeType.html#M000225">inherited (NudgeType)</a><br />
|
355
|
-
|
356
|
-
<a href="classes/InstructionNode.html#M000247">instruction_name (InstructionNode)</a><br />
|
357
|
-
|
358
|
-
<a href="classes/Nudge/Individual.html#M000315">known_scores (Nudge::Individual)</a><br />
|
359
|
-
|
360
|
-
<a href="classes/Nudge/CodeBlock.html#M000265">listing (Nudge::CodeBlock)</a><br />
|
361
|
-
|
362
|
-
<a href="classes/Nudge/Channel.html#M000298">listing (Nudge::Channel)</a><br />
|
363
|
-
|
364
|
-
<a href="classes/Nudge/LiteralPoint.html#M000277">listing (Nudge::LiteralPoint)</a><br />
|
365
|
-
|
366
|
-
<a href="classes/Nudge/Erc.html#M000285">listing (Nudge::Erc)</a><br />
|
367
|
-
|
368
|
-
<a href="classes/Nudge/InstructionPoint.html#M000306">listing (Nudge::InstructionPoint)</a><br />
|
369
|
-
|
370
|
-
<a href="classes/Nudge/CodeBlock.html#M000264">listing= (Nudge::CodeBlock)</a><br />
|
371
|
-
|
372
|
-
<a href="classes/Nudge/Location.html#M000319">locations (Nudge::Location)</a><br />
|
373
|
-
|
374
|
-
<a href="classes/Instruction.html#M000146">logError (Instruction)</a><br />
|
375
|
-
|
376
|
-
<a href="classes/Nudge/Channel.html#M000292">lookup (Nudge::Channel)</a><br />
|
377
|
-
|
378
|
-
<a href="classes/Nudge/Channel.html#M000288">names (Nudge::Channel)</a><br />
|
379
|
-
|
380
|
-
<a href="classes/Instruction.html#M000139">needs (Instruction)</a><br />
|
381
|
-
|
382
|
-
<a href="classes/Nudge/DeadLocation.html#M000334">new (Nudge::DeadLocation)</a><br />
|
383
|
-
|
384
|
-
<a href="classes/Nudge/Channel.html#M000294">new (Nudge::Channel)</a><br />
|
385
|
-
|
386
|
-
<a href="classes/Nudge/Location.html#M000321">new (Nudge::Location)</a><br />
|
387
|
-
|
388
|
-
<a href="classes/Nudge/SearchOperator.html#M000335">new (Nudge::SearchOperator)</a><br />
|
389
|
-
|
390
|
-
<a href="classes/Nudge/InstructionPoint.html#M000299">new (Nudge::InstructionPoint)</a><br />
|
391
|
-
|
392
|
-
<a href="classes/Nudge/Erc.html#M000278">new (Nudge::Erc)</a><br />
|
393
|
-
|
394
|
-
<a href="classes/Nudge/LiteralPoint.html#M000272">new (Nudge::LiteralPoint)</a><br />
|
395
|
-
|
396
|
-
<a href="classes/Nudge/CodeBlock.html#M000263">new (Nudge::CodeBlock)</a><br />
|
397
|
-
|
398
|
-
<a href="classes/Nudge/Stack.html#M000309">new (Nudge::Stack)</a><br />
|
399
|
-
|
400
|
-
<a href="classes/Nudge/Individual.html#M000314">new (Nudge::Individual)</a><br />
|
401
|
-
|
402
|
-
<a href="classes/Nudge/Interpreter.html#M000257">new (Nudge::Interpreter)</a><br />
|
403
|
-
|
404
|
-
<a href="classes/Nudge/Interpreter.html#M000259">notDone? (Nudge::Interpreter)</a><br />
|
405
|
-
|
406
|
-
<a href="classes/Nudge/Stack.html#M000312">peek (Nudge::Stack)</a><br />
|
407
|
-
|
408
|
-
<a href="classes/Nudge/ProgramPoint.html#M000262">points (Nudge::ProgramPoint)</a><br />
|
409
|
-
|
410
|
-
<a href="classes/Nudge/Individual.html#M000316">points (Nudge::Individual)</a><br />
|
411
|
-
|
412
|
-
<a href="classes/Nudge/CodeBlock.html#M000269">points (Nudge::CodeBlock)</a><br />
|
413
|
-
|
414
|
-
<a href="classes/Nudge/Stack.html#M000311">pop (Nudge::Stack)</a><br />
|
415
|
-
|
416
|
-
<a href="classes/FloatLessThanQInstruction.html#M000039">preconditions? (FloatLessThanQInstruction)</a><br />
|
417
|
-
|
418
|
-
<a href="classes/FloatPowerInstruction.html#M000111">preconditions? (FloatPowerInstruction)</a><br />
|
419
|
-
|
420
|
-
<a href="classes/FloatSineInstruction.html#M000119">preconditions? (FloatSineInstruction)</a><br />
|
421
|
-
|
422
|
-
<a href="classes/FloatAbsInstruction.html#M000107">preconditions? (FloatAbsInstruction)</a><br />
|
423
|
-
|
424
|
-
<a href="classes/IntDuplicateInstruction.html#M000203">preconditions? (IntDuplicateInstruction)</a><br />
|
425
|
-
|
426
|
-
<a href="classes/FloatRandomInstruction.html#M000191">preconditions? (FloatRandomInstruction)</a><br />
|
427
|
-
|
428
|
-
<a href="classes/IntGreaterThanQInstruction.html#M000031">preconditions? (IntGreaterThanQInstruction)</a><br />
|
429
|
-
|
430
|
-
<a href="classes/FloatNegativeInstruction.html#M000103">preconditions? (FloatNegativeInstruction)</a><br />
|
431
|
-
|
432
|
-
<a href="classes/IntRotateInstruction.html#M000207">preconditions? (IntRotateInstruction)</a><br />
|
433
|
-
|
434
|
-
<a href="classes/BoolRandomInstruction.html#M000187">preconditions? (BoolRandomInstruction)</a><br />
|
435
|
-
|
436
|
-
<a href="classes/FloatGreaterThanQInstruction.html#M000035">preconditions? (FloatGreaterThanQInstruction)</a><br />
|
437
|
-
|
438
|
-
<a href="classes/FloatMinInstruction.html#M000099">preconditions? (FloatMinInstruction)</a><br />
|
439
|
-
|
440
|
-
<a href="classes/IntDepthInstruction.html#M000211">preconditions? (IntDepthInstruction)</a><br />
|
441
|
-
|
442
|
-
<a href="classes/FloatCosineInstruction.html#M000123">preconditions? (FloatCosineInstruction)</a><br />
|
443
|
-
|
444
|
-
<a href="classes/IntEqualQInstruction.html#M000023">preconditions? (IntEqualQInstruction)</a><br />
|
445
|
-
|
446
|
-
<a href="classes/FloatMaxInstruction.html#M000095">preconditions? (FloatMaxInstruction)</a><br />
|
447
|
-
|
448
|
-
<a href="classes/IntFlushInstruction.html#M000215">preconditions? (IntFlushInstruction)</a><br />
|
449
|
-
|
450
|
-
<a href="classes/IntFromBoolInstruction.html#M000051">preconditions? (IntFromBoolInstruction)</a><br />
|
451
|
-
|
452
|
-
<a href="classes/IntRandomInstruction.html#M000183">preconditions? (IntRandomInstruction)</a><br />
|
453
|
-
|
454
|
-
<a href="classes/FloatDivideInstruction.html#M000091">preconditions? (FloatDivideInstruction)</a><br />
|
455
|
-
|
456
|
-
<a href="classes/FloatTangentInstruction.html#M000127">preconditions? (FloatTangentInstruction)</a><br />
|
457
|
-
|
458
|
-
<a href="classes/BoolNotInstruction.html#M000019">preconditions? (BoolNotInstruction)</a><br />
|
459
|
-
|
460
|
-
<a href="classes/IntSwapInstruction.html#M000199">preconditions? (IntSwapInstruction)</a><br />
|
461
|
-
|
462
|
-
<a href="classes/FloatMultiplyInstruction.html#M000083">preconditions? (FloatMultiplyInstruction)</a><br />
|
463
|
-
|
464
|
-
<a href="classes/BoolEqualQInstruction.html#M000015">preconditions? (BoolEqualQInstruction)</a><br />
|
465
|
-
|
466
|
-
<a href="classes/IntNegativeInstruction.html#M000179">preconditions? (IntNegativeInstruction)</a><br />
|
467
|
-
|
468
|
-
<a href="classes/BoolXorInstruction.html#M000011">preconditions? (BoolXorInstruction)</a><br />
|
469
|
-
|
470
|
-
<a href="classes/IntIfInstruction.html#M000043">preconditions? (IntIfInstruction)</a><br />
|
471
|
-
|
472
|
-
<a href="classes/IntAbsInstruction.html#M000175">preconditions? (IntAbsInstruction)</a><br />
|
473
|
-
|
474
|
-
<a href="classes/FloatAddInstruction.html#M000079">preconditions? (FloatAddInstruction)</a><br />
|
475
|
-
|
476
|
-
<a href="classes/IntMinInstruction.html#M000171">preconditions? (IntMinInstruction)</a><br />
|
477
|
-
|
478
|
-
<a href="classes/ExecPopInstruction.html#M000075">preconditions? (ExecPopInstruction)</a><br />
|
479
|
-
|
480
|
-
<a href="classes/Instruction.html#M000142">preconditions? (Instruction)</a><br />
|
481
|
-
|
482
|
-
<a href="classes/BoolFromFloatInstruction.html#M000071">preconditions? (BoolFromFloatInstruction)</a><br />
|
483
|
-
|
484
|
-
<a href="classes/IntMaxInstruction.html#M000167">preconditions? (IntMaxInstruction)</a><br />
|
485
|
-
|
486
|
-
<a href="classes/IntModuloInstruction.html#M000163">preconditions? (IntModuloInstruction)</a><br />
|
487
|
-
|
488
|
-
<a href="classes/BoolFromIntInstruction.html#M000067">preconditions? (BoolFromIntInstruction)</a><br />
|
489
|
-
|
490
|
-
<a href="classes/IntAddInstruction.html#M000147">preconditions? (IntAddInstruction)</a><br />
|
491
|
-
|
492
|
-
<a href="classes/IntLessThanQInstruction.html#M000027">preconditions? (IntLessThanQInstruction)</a><br />
|
493
|
-
|
494
|
-
<a href="classes/FloatFromIntInstruction.html#M000063">preconditions? (FloatFromIntInstruction)</a><br />
|
495
|
-
|
496
|
-
<a href="classes/FloatIfInstruction.html#M000047">preconditions? (FloatIfInstruction)</a><br />
|
497
|
-
|
498
|
-
<a href="classes/BoolOrInstruction.html#M000007">preconditions? (BoolOrInstruction)</a><br />
|
499
|
-
|
500
|
-
<a href="classes/IntFromFloatInstruction.html#M000059">preconditions? (IntFromFloatInstruction)</a><br />
|
501
|
-
|
502
|
-
<a href="classes/IntSubtractInstruction.html#M000159">preconditions? (IntSubtractInstruction)</a><br />
|
503
|
-
|
504
|
-
<a href="classes/IntMultiplyInstruction.html#M000151">preconditions? (IntMultiplyInstruction)</a><br />
|
505
|
-
|
506
|
-
<a href="classes/FloatFromBoolInstruction.html#M000055">preconditions? (FloatFromBoolInstruction)</a><br />
|
507
|
-
|
508
|
-
<a href="classes/IntPopInstruction.html#M000195">preconditions? (IntPopInstruction)</a><br />
|
509
|
-
|
510
|
-
<a href="classes/FloatSqrtInstruction.html#M000115">preconditions? (FloatSqrtInstruction)</a><br />
|
511
|
-
|
512
|
-
<a href="classes/BoolAndInstruction.html#M000003">preconditions? (BoolAndInstruction)</a><br />
|
513
|
-
|
514
|
-
<a href="classes/IntDivideInstruction.html#M000155">preconditions? (IntDivideInstruction)</a><br />
|
515
|
-
|
516
|
-
<a href="classes/FloatSubtractInstruction.html#M000087">preconditions? (FloatSubtractInstruction)</a><br />
|
517
|
-
|
518
|
-
<a href="classes/Nudge/Location.html#M000327">promote (Nudge::Location)</a><br />
|
519
|
-
|
520
|
-
<a href="classes/Nudge/Location.html#M000326">promote? (Nudge::Location)</a><br />
|
521
|
-
|
522
|
-
<a href="classes/Nudge/Stack.html#M000310">push (Nudge::Stack)</a><br />
|
523
|
-
|
524
|
-
<a href="classes/NudgeType.html#M000227">push_types_only (NudgeType)</a><br />
|
525
|
-
|
526
|
-
<a href="classes/Instruction.html#M000140">pushes (Instruction)</a><br />
|
527
|
-
|
528
|
-
<a href="classes/CodeType.html#M000219">random_skeleton (CodeType)</a><br />
|
529
|
-
|
530
|
-
<a href="classes/CodeType.html#M000224">random_value (CodeType)</a><br />
|
531
|
-
|
532
|
-
<a href="classes/IntType.html#M000237">random_value (IntType)</a><br />
|
533
|
-
|
534
|
-
<a href="classes/BoolType.html#M000240">random_value (BoolType)</a><br />
|
535
|
-
|
536
|
-
<a href="classes/FloatType.html#M000243">random_value (FloatType)</a><br />
|
537
|
-
|
538
|
-
<a href="classes/Nudge/Erc.html#M000282">randomize (Nudge::Erc)</a><br />
|
539
|
-
|
540
|
-
<a href="classes/Nudge/LiteralPoint.html#M000275">randomize (Nudge::LiteralPoint)</a><br />
|
541
|
-
|
542
|
-
<a href="classes/Nudge/InstructionPoint.html#M000304">randomize (Nudge::InstructionPoint)</a><br />
|
543
|
-
|
544
|
-
<a href="classes/Nudge/Channel.html#M000297">randomize (Nudge::Channel)</a><br />
|
545
|
-
|
546
|
-
<a href="classes/Nudge/CodeBlock.html#M000268">reparse (Nudge::CodeBlock)</a><br />
|
547
|
-
|
548
|
-
<a href="classes/Nudge/Erc.html#M000283">resample (Nudge::Erc)</a><br />
|
549
|
-
|
550
|
-
<a href="classes/Nudge/Interpreter.html#M000258">reset (Nudge::Interpreter)</a><br />
|
551
|
-
|
552
|
-
<a href="classes/Nudge/Channel.html#M000290">reset_names (Nudge::Channel)</a><br />
|
553
|
-
|
554
|
-
<a href="classes/Nudge/Channel.html#M000289">reset_variables (Nudge::Channel)</a><br />
|
555
|
-
|
556
|
-
<a href="classes/Nudge/Location.html#M000328">review_and_promote (Nudge::Location)</a><br />
|
557
|
-
|
558
|
-
<a href="classes/CodeType.html#M000223">roulette_wheel (CodeType)</a><br />
|
559
|
-
|
560
|
-
<a href="classes/Nudge/Interpreter.html#M000261">run (Nudge::Interpreter)</a><br />
|
561
|
-
|
562
|
-
<a href="classes/Nudge/Individual.html#M000317">score_vector (Nudge::Individual)</a><br />
|
563
|
-
|
564
|
-
<a href="classes/IntAddInstruction.html#M000148">setup (IntAddInstruction)</a><br />
|
565
|
-
|
566
|
-
<a href="classes/IntAbsInstruction.html#M000176">setup (IntAbsInstruction)</a><br />
|
567
|
-
|
568
|
-
<a href="classes/IntMaxInstruction.html#M000168">setup (IntMaxInstruction)</a><br />
|
569
|
-
|
570
|
-
<a href="classes/IntIfInstruction.html#M000044">setup (IntIfInstruction)</a><br />
|
571
|
-
|
572
|
-
<a href="classes/BoolFromFloatInstruction.html#M000072">setup (BoolFromFloatInstruction)</a><br />
|
573
|
-
|
574
|
-
<a href="classes/ExecPopInstruction.html#M000076">setup (ExecPopInstruction)</a><br />
|
575
|
-
|
576
|
-
<a href="classes/BoolXorInstruction.html#M000012">setup (BoolXorInstruction)</a><br />
|
577
|
-
|
578
|
-
<a href="classes/BoolFromIntInstruction.html#M000068">setup (BoolFromIntInstruction)</a><br />
|
579
|
-
|
580
|
-
<a href="classes/IntNegativeInstruction.html#M000180">setup (IntNegativeInstruction)</a><br />
|
581
|
-
|
582
|
-
<a href="classes/Instruction.html#M000143">setup (Instruction)</a><br />
|
583
|
-
|
584
|
-
<a href="classes/IntMinInstruction.html#M000172">setup (IntMinInstruction)</a><br />
|
585
|
-
|
586
|
-
<a href="classes/FloatAddInstruction.html#M000080">setup (FloatAddInstruction)</a><br />
|
587
|
-
|
588
|
-
<a href="classes/IntModuloInstruction.html#M000164">setup (IntModuloInstruction)</a><br />
|
589
|
-
|
590
|
-
<a href="classes/FloatFromIntInstruction.html#M000064">setup (FloatFromIntInstruction)</a><br />
|
591
|
-
|
592
|
-
<a href="classes/FloatLessThanQInstruction.html#M000040">setup (FloatLessThanQInstruction)</a><br />
|
593
|
-
|
594
|
-
<a href="classes/FloatFromBoolInstruction.html#M000056">setup (FloatFromBoolInstruction)</a><br />
|
595
|
-
|
596
|
-
<a href="classes/IntFromBoolInstruction.html#M000052">setup (IntFromBoolInstruction)</a><br />
|
597
|
-
|
598
|
-
<a href="classes/IntFromFloatInstruction.html#M000060">setup (IntFromFloatInstruction)</a><br />
|
599
|
-
|
600
|
-
<a href="classes/FloatMultiplyInstruction.html#M000084">setup (FloatMultiplyInstruction)</a><br />
|
601
|
-
|
602
|
-
<a href="classes/FloatSubtractInstruction.html#M000088">setup (FloatSubtractInstruction)</a><br />
|
603
|
-
|
604
|
-
<a href="classes/FloatGreaterThanQInstruction.html#M000036">setup (FloatGreaterThanQInstruction)</a><br />
|
605
|
-
|
606
|
-
<a href="classes/BoolOrInstruction.html#M000008">setup (BoolOrInstruction)</a><br />
|
607
|
-
|
608
|
-
<a href="classes/FloatDivideInstruction.html#M000092">setup (FloatDivideInstruction)</a><br />
|
609
|
-
|
610
|
-
<a href="classes/BoolAndInstruction.html#M000004">setup (BoolAndInstruction)</a><br />
|
611
|
-
|
612
|
-
<a href="classes/IntFlushInstruction.html#M000216">setup (IntFlushInstruction)</a><br />
|
613
|
-
|
614
|
-
<a href="classes/FloatMaxInstruction.html#M000096">setup (FloatMaxInstruction)</a><br />
|
615
|
-
|
616
|
-
<a href="classes/IntDepthInstruction.html#M000212">setup (IntDepthInstruction)</a><br />
|
617
|
-
|
618
|
-
<a href="classes/FloatMinInstruction.html#M000100">setup (FloatMinInstruction)</a><br />
|
619
|
-
|
620
|
-
<a href="classes/IntGreaterThanQInstruction.html#M000032">setup (IntGreaterThanQInstruction)</a><br />
|
621
|
-
|
622
|
-
<a href="classes/IntSubtractInstruction.html#M000160">setup (IntSubtractInstruction)</a><br />
|
623
|
-
|
624
|
-
<a href="classes/IntRotateInstruction.html#M000208">setup (IntRotateInstruction)</a><br />
|
625
|
-
|
626
|
-
<a href="classes/IntMultiplyInstruction.html#M000152">setup (IntMultiplyInstruction)</a><br />
|
627
|
-
|
628
|
-
<a href="classes/FloatNegativeInstruction.html#M000104">setup (FloatNegativeInstruction)</a><br />
|
629
|
-
|
630
|
-
<a href="classes/IntDuplicateInstruction.html#M000204">setup (IntDuplicateInstruction)</a><br />
|
631
|
-
|
632
|
-
<a href="classes/BoolEqualQInstruction.html#M000016">setup (BoolEqualQInstruction)</a><br />
|
633
|
-
|
634
|
-
<a href="classes/IntLessThanQInstruction.html#M000028">setup (IntLessThanQInstruction)</a><br />
|
635
|
-
|
636
|
-
<a href="classes/FloatAbsInstruction.html#M000108">setup (FloatAbsInstruction)</a><br />
|
637
|
-
|
638
|
-
<a href="classes/IntDivideInstruction.html#M000156">setup (IntDivideInstruction)</a><br />
|
639
|
-
|
640
|
-
<a href="classes/IntSwapInstruction.html#M000200">setup (IntSwapInstruction)</a><br />
|
641
|
-
|
642
|
-
<a href="classes/FloatPowerInstruction.html#M000112">setup (FloatPowerInstruction)</a><br />
|
643
|
-
|
644
|
-
<a href="classes/IntPopInstruction.html#M000196">setup (IntPopInstruction)</a><br />
|
645
|
-
|
646
|
-
<a href="classes/FloatSqrtInstruction.html#M000116">setup (FloatSqrtInstruction)</a><br />
|
647
|
-
|
648
|
-
<a href="classes/FloatRandomInstruction.html#M000192">setup (FloatRandomInstruction)</a><br />
|
649
|
-
|
650
|
-
<a href="classes/FloatSineInstruction.html#M000120">setup (FloatSineInstruction)</a><br />
|
651
|
-
|
652
|
-
<a href="classes/FloatIfInstruction.html#M000048">setup (FloatIfInstruction)</a><br />
|
653
|
-
|
654
|
-
<a href="classes/IntEqualQInstruction.html#M000024">setup (IntEqualQInstruction)</a><br />
|
655
|
-
|
656
|
-
<a href="classes/BoolRandomInstruction.html#M000188">setup (BoolRandomInstruction)</a><br />
|
657
|
-
|
658
|
-
<a href="classes/FloatTangentInstruction.html#M000128">setup (FloatTangentInstruction)</a><br />
|
659
|
-
|
660
|
-
<a href="classes/IntRandomInstruction.html#M000184">setup (IntRandomInstruction)</a><br />
|
661
|
-
|
662
|
-
<a href="classes/BoolNotInstruction.html#M000020">setup (BoolNotInstruction)</a><br />
|
663
|
-
|
664
|
-
<a href="classes/FloatCosineInstruction.html#M000124">setup (FloatCosineInstruction)</a><br />
|
665
|
-
|
666
|
-
<a href="classes/ERCNode.html#M000254">stack_name (ERCNode)</a><br />
|
667
|
-
|
668
|
-
<a href="classes/LiteralNode.html#M000251">stack_name (LiteralNode)</a><br />
|
669
|
-
|
670
|
-
<a href="classes/Nudge/Stack.html#M000307">stacks (Nudge::Stack)</a><br />
|
671
|
-
|
672
|
-
<a href="classes/Nudge/Interpreter.html#M000260">step (Nudge::Interpreter)</a><br />
|
673
|
-
|
674
|
-
<a href="classes/Nudge/Erc.html#M000281">tidy (Nudge::Erc)</a><br />
|
675
|
-
|
676
|
-
<a href="classes/Nudge/InstructionPoint.html#M000302">tidy (Nudge::InstructionPoint)</a><br />
|
677
|
-
|
678
|
-
<a href="classes/Nudge/Channel.html#M000296">tidy (Nudge::Channel)</a><br />
|
679
|
-
|
680
|
-
<a href="classes/Nudge/LiteralPoint.html#M000274">tidy (Nudge::LiteralPoint)</a><br />
|
681
|
-
|
682
|
-
<a href="classes/Nudge/CodeBlock.html#M000271">tidy (Nudge::CodeBlock)</a><br />
|
683
|
-
|
684
|
-
<a href="classes/Nudge/Erc.html#M000279">to_literal (Nudge::Erc)</a><br />
|
685
|
-
|
686
|
-
<a href="classes/Instruction.html#M000138">to_nudgecode (Instruction)</a><br />
|
687
|
-
|
688
|
-
<a href="classes/NudgeType.html#M000233">to_nudgecode (NudgeType)</a><br />
|
689
|
-
|
690
|
-
<a href="classes/BlockNode.html#M000246">to_points (BlockNode)</a><br />
|
691
|
-
|
692
|
-
<a href="classes/InstructionNode.html#M000248">to_points (InstructionNode)</a><br />
|
693
|
-
|
694
|
-
<a href="classes/ERCNode.html#M000256">to_points (ERCNode)</a><br />
|
695
|
-
|
696
|
-
<a href="classes/LiteralNode.html#M000253">to_points (LiteralNode)</a><br />
|
697
|
-
|
698
|
-
<a href="classes/ChannelNode.html#M000250">to_points (ChannelNode)</a><br />
|
699
|
-
|
700
|
-
<a href="classes/Nudge/Location.html#M000325">transfer (Nudge::Location)</a><br />
|
701
|
-
|
702
|
-
<a href="classes/LiteralNode.html#M000252">value (LiteralNode)</a><br />
|
703
|
-
|
704
|
-
<a href="classes/ERCNode.html#M000255">value (ERCNode)</a><br />
|
705
|
-
|
706
|
-
<a href="classes/Nudge/Channel.html#M000286">variables (Nudge::Channel)</a><br />
|
707
|
-
|
708
|
-
</div>
|
709
|
-
</div>
|
710
|
-
</body>
|
711
|
-
</html>
|