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
metadata
CHANGED
@@ -1,72 +1,56 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nudge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
version: 0.1.0
|
5
10
|
platform: ruby
|
6
11
|
authors:
|
7
12
|
- Bill Tozier
|
8
13
|
- Trek Glowacki
|
14
|
+
- Jesse Sielaff
|
9
15
|
autorequire:
|
10
16
|
bindir: bin
|
11
17
|
cert_chain: []
|
12
18
|
|
13
|
-
date: 2010-
|
14
|
-
default_executable:
|
19
|
+
date: 2010-03-27 00:00:00 -04:00
|
20
|
+
default_executable:
|
15
21
|
dependencies:
|
16
|
-
- !ruby/object:Gem::Dependency
|
17
|
-
name: couchrest
|
18
|
-
type: :runtime
|
19
|
-
version_requirement:
|
20
|
-
version_requirements: !ruby/object:Gem::Requirement
|
21
|
-
requirements:
|
22
|
-
- - ">="
|
23
|
-
- !ruby/object:Gem::Version
|
24
|
-
version: "0.33"
|
25
|
-
version:
|
26
|
-
- !ruby/object:Gem::Dependency
|
27
|
-
name: sinatra
|
28
|
-
type: :runtime
|
29
|
-
version_requirement:
|
30
|
-
version_requirements: !ruby/object:Gem::Requirement
|
31
|
-
requirements:
|
32
|
-
- - ">="
|
33
|
-
- !ruby/object:Gem::Version
|
34
|
-
version: 0.9.4
|
35
|
-
version:
|
36
22
|
- !ruby/object:Gem::Dependency
|
37
23
|
name: treetop
|
38
|
-
|
39
|
-
|
40
|
-
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
41
26
|
requirements:
|
42
27
|
- - ">="
|
43
28
|
- !ruby/object:Gem::Version
|
29
|
+
segments:
|
30
|
+
- 1
|
31
|
+
- 4
|
32
|
+
- 3
|
44
33
|
version: 1.4.3
|
45
|
-
version:
|
46
|
-
- !ruby/object:Gem::Dependency
|
47
|
-
name: polyglot
|
48
34
|
type: :runtime
|
49
|
-
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 0.2.9
|
55
|
-
version:
|
35
|
+
version_requirements: *id001
|
56
36
|
- !ruby/object:Gem::Dependency
|
57
37
|
name: activesupport
|
58
|
-
|
59
|
-
|
60
|
-
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
prerelease: false
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
61
40
|
requirements:
|
62
41
|
- - ">="
|
63
42
|
- !ruby/object:Gem::Version
|
43
|
+
segments:
|
44
|
+
- 2
|
45
|
+
- 3
|
46
|
+
- 5
|
64
47
|
version: 2.3.5
|
65
|
-
|
66
|
-
|
48
|
+
type: :runtime
|
49
|
+
version_requirements: *id002
|
50
|
+
description: Provides a Ruby library & CLI implementing a flexible Nudge Language interpreter, plus a set of generators for adding domain-specific instructions and types.
|
67
51
|
email: bill@vagueinnovation.com
|
68
|
-
executables:
|
69
|
-
|
52
|
+
executables: []
|
53
|
+
|
70
54
|
extensions: []
|
71
55
|
|
72
56
|
extra_rdoc_files:
|
@@ -76,599 +60,326 @@ files:
|
|
76
60
|
- LICENSE.txt
|
77
61
|
- Rakefile
|
78
62
|
- VERSION
|
79
|
-
-
|
80
|
-
-
|
81
|
-
-
|
82
|
-
-
|
83
|
-
-
|
84
|
-
-
|
85
|
-
-
|
86
|
-
-
|
87
|
-
-
|
88
|
-
-
|
89
|
-
-
|
90
|
-
-
|
91
|
-
-
|
92
|
-
-
|
93
|
-
-
|
94
|
-
-
|
95
|
-
-
|
96
|
-
-
|
97
|
-
-
|
98
|
-
-
|
99
|
-
-
|
100
|
-
-
|
101
|
-
-
|
102
|
-
-
|
103
|
-
-
|
104
|
-
-
|
105
|
-
-
|
106
|
-
-
|
107
|
-
-
|
108
|
-
-
|
109
|
-
-
|
110
|
-
-
|
111
|
-
-
|
112
|
-
-
|
113
|
-
-
|
114
|
-
-
|
115
|
-
-
|
116
|
-
-
|
117
|
-
-
|
118
|
-
-
|
119
|
-
-
|
120
|
-
-
|
121
|
-
-
|
122
|
-
-
|
123
|
-
-
|
124
|
-
-
|
125
|
-
-
|
126
|
-
-
|
127
|
-
-
|
128
|
-
-
|
129
|
-
-
|
130
|
-
-
|
131
|
-
-
|
132
|
-
-
|
133
|
-
-
|
134
|
-
-
|
135
|
-
-
|
136
|
-
-
|
137
|
-
-
|
138
|
-
-
|
139
|
-
-
|
140
|
-
-
|
141
|
-
-
|
142
|
-
-
|
143
|
-
-
|
144
|
-
-
|
145
|
-
-
|
146
|
-
-
|
147
|
-
-
|
148
|
-
-
|
149
|
-
-
|
150
|
-
-
|
151
|
-
-
|
152
|
-
-
|
153
|
-
-
|
154
|
-
-
|
155
|
-
-
|
156
|
-
-
|
157
|
-
-
|
158
|
-
-
|
159
|
-
-
|
160
|
-
-
|
161
|
-
-
|
162
|
-
-
|
163
|
-
-
|
164
|
-
-
|
165
|
-
-
|
166
|
-
-
|
167
|
-
-
|
168
|
-
-
|
169
|
-
-
|
170
|
-
-
|
171
|
-
-
|
172
|
-
-
|
173
|
-
-
|
174
|
-
-
|
175
|
-
-
|
176
|
-
-
|
177
|
-
-
|
178
|
-
-
|
179
|
-
-
|
180
|
-
-
|
181
|
-
-
|
182
|
-
-
|
183
|
-
-
|
184
|
-
-
|
185
|
-
-
|
186
|
-
-
|
187
|
-
-
|
188
|
-
-
|
189
|
-
-
|
190
|
-
-
|
191
|
-
-
|
192
|
-
-
|
193
|
-
- doc/classes/FloatFromBoolInstruction.src/M000056.html
|
194
|
-
- doc/classes/FloatFromBoolInstruction.src/M000057.html
|
195
|
-
- doc/classes/FloatFromBoolInstruction.src/M000058.html
|
196
|
-
- doc/classes/FloatFromIntInstruction.html
|
197
|
-
- doc/classes/FloatFromIntInstruction.src/M000063.html
|
198
|
-
- doc/classes/FloatFromIntInstruction.src/M000064.html
|
199
|
-
- doc/classes/FloatFromIntInstruction.src/M000065.html
|
200
|
-
- doc/classes/FloatFromIntInstruction.src/M000066.html
|
201
|
-
- doc/classes/FloatGreaterThanQInstruction.html
|
202
|
-
- doc/classes/FloatGreaterThanQInstruction.src/M000035.html
|
203
|
-
- doc/classes/FloatGreaterThanQInstruction.src/M000036.html
|
204
|
-
- doc/classes/FloatGreaterThanQInstruction.src/M000037.html
|
205
|
-
- doc/classes/FloatGreaterThanQInstruction.src/M000038.html
|
206
|
-
- doc/classes/FloatIfInstruction.html
|
207
|
-
- doc/classes/FloatIfInstruction.src/M000047.html
|
208
|
-
- doc/classes/FloatIfInstruction.src/M000048.html
|
209
|
-
- doc/classes/FloatIfInstruction.src/M000049.html
|
210
|
-
- doc/classes/FloatIfInstruction.src/M000050.html
|
211
|
-
- doc/classes/FloatLessThanQInstruction.html
|
212
|
-
- doc/classes/FloatLessThanQInstruction.src/M000039.html
|
213
|
-
- doc/classes/FloatLessThanQInstruction.src/M000040.html
|
214
|
-
- doc/classes/FloatLessThanQInstruction.src/M000041.html
|
215
|
-
- doc/classes/FloatLessThanQInstruction.src/M000042.html
|
216
|
-
- doc/classes/FloatMaxInstruction.html
|
217
|
-
- doc/classes/FloatMaxInstruction.src/M000095.html
|
218
|
-
- doc/classes/FloatMaxInstruction.src/M000096.html
|
219
|
-
- doc/classes/FloatMaxInstruction.src/M000097.html
|
220
|
-
- doc/classes/FloatMaxInstruction.src/M000098.html
|
221
|
-
- doc/classes/FloatMinInstruction.html
|
222
|
-
- doc/classes/FloatMinInstruction.src/M000099.html
|
223
|
-
- doc/classes/FloatMinInstruction.src/M000100.html
|
224
|
-
- doc/classes/FloatMinInstruction.src/M000101.html
|
225
|
-
- doc/classes/FloatMinInstruction.src/M000102.html
|
226
|
-
- doc/classes/FloatMultiplyInstruction.html
|
227
|
-
- doc/classes/FloatMultiplyInstruction.src/M000083.html
|
228
|
-
- doc/classes/FloatMultiplyInstruction.src/M000084.html
|
229
|
-
- doc/classes/FloatMultiplyInstruction.src/M000085.html
|
230
|
-
- doc/classes/FloatMultiplyInstruction.src/M000086.html
|
231
|
-
- doc/classes/FloatNegativeInstruction.html
|
232
|
-
- doc/classes/FloatNegativeInstruction.src/M000103.html
|
233
|
-
- doc/classes/FloatNegativeInstruction.src/M000104.html
|
234
|
-
- doc/classes/FloatNegativeInstruction.src/M000105.html
|
235
|
-
- doc/classes/FloatNegativeInstruction.src/M000106.html
|
236
|
-
- doc/classes/FloatPowerInstruction.html
|
237
|
-
- doc/classes/FloatPowerInstruction.src/M000111.html
|
238
|
-
- doc/classes/FloatPowerInstruction.src/M000112.html
|
239
|
-
- doc/classes/FloatPowerInstruction.src/M000113.html
|
240
|
-
- doc/classes/FloatPowerInstruction.src/M000114.html
|
241
|
-
- doc/classes/FloatRandomInstruction.html
|
242
|
-
- doc/classes/FloatRandomInstruction.src/M000191.html
|
243
|
-
- doc/classes/FloatRandomInstruction.src/M000192.html
|
244
|
-
- doc/classes/FloatRandomInstruction.src/M000193.html
|
245
|
-
- doc/classes/FloatRandomInstruction.src/M000194.html
|
246
|
-
- doc/classes/FloatSineInstruction.html
|
247
|
-
- doc/classes/FloatSineInstruction.src/M000119.html
|
248
|
-
- doc/classes/FloatSineInstruction.src/M000120.html
|
249
|
-
- doc/classes/FloatSineInstruction.src/M000121.html
|
250
|
-
- doc/classes/FloatSineInstruction.src/M000122.html
|
251
|
-
- doc/classes/FloatSqrtInstruction.html
|
252
|
-
- doc/classes/FloatSqrtInstruction.src/M000115.html
|
253
|
-
- doc/classes/FloatSqrtInstruction.src/M000116.html
|
254
|
-
- doc/classes/FloatSqrtInstruction.src/M000117.html
|
255
|
-
- doc/classes/FloatSqrtInstruction.src/M000118.html
|
256
|
-
- doc/classes/FloatSubtractInstruction.html
|
257
|
-
- doc/classes/FloatSubtractInstruction.src/M000087.html
|
258
|
-
- doc/classes/FloatSubtractInstruction.src/M000088.html
|
259
|
-
- doc/classes/FloatSubtractInstruction.src/M000089.html
|
260
|
-
- doc/classes/FloatSubtractInstruction.src/M000090.html
|
261
|
-
- doc/classes/FloatTangentInstruction.html
|
262
|
-
- doc/classes/FloatTangentInstruction.src/M000127.html
|
263
|
-
- doc/classes/FloatTangentInstruction.src/M000128.html
|
264
|
-
- doc/classes/FloatTangentInstruction.src/M000129.html
|
265
|
-
- doc/classes/FloatTangentInstruction.src/M000130.html
|
266
|
-
- doc/classes/FloatType.html
|
267
|
-
- doc/classes/FloatType.src/M000243.html
|
268
|
-
- doc/classes/FloatType.src/M000244.html
|
269
|
-
- doc/classes/FloatType.src/M000245.html
|
270
|
-
- doc/classes/Helpers.html
|
271
|
-
- doc/classes/Helpers.src/M000343.html
|
272
|
-
- doc/classes/Helpers.src/M000344.html
|
273
|
-
- doc/classes/Instruction.html
|
274
|
-
- doc/classes/Instruction.src/M000131.html
|
275
|
-
- doc/classes/Instruction.src/M000132.html
|
276
|
-
- doc/classes/Instruction.src/M000133.html
|
277
|
-
- doc/classes/Instruction.src/M000134.html
|
278
|
-
- doc/classes/Instruction.src/M000135.html
|
279
|
-
- doc/classes/Instruction.src/M000136.html
|
280
|
-
- doc/classes/Instruction.src/M000137.html
|
281
|
-
- doc/classes/Instruction.src/M000138.html
|
282
|
-
- doc/classes/Instruction.src/M000139.html
|
283
|
-
- doc/classes/Instruction.src/M000140.html
|
284
|
-
- doc/classes/Instruction.src/M000141.html
|
285
|
-
- doc/classes/Instruction.src/M000142.html
|
286
|
-
- doc/classes/Instruction.src/M000143.html
|
287
|
-
- doc/classes/Instruction.src/M000144.html
|
288
|
-
- doc/classes/Instruction.src/M000145.html
|
289
|
-
- doc/classes/Instruction.src/M000146.html
|
290
|
-
- doc/classes/Instruction/InstructionMethodError.html
|
291
|
-
- doc/classes/Instruction/NaNResultError.html
|
292
|
-
- doc/classes/Instruction/NotEnoughStackItems.html
|
293
|
-
- doc/classes/InstructionNode.html
|
294
|
-
- doc/classes/InstructionNode.src/M000247.html
|
295
|
-
- doc/classes/InstructionNode.src/M000248.html
|
296
|
-
- doc/classes/IntAbsInstruction.html
|
297
|
-
- doc/classes/IntAbsInstruction.src/M000175.html
|
298
|
-
- doc/classes/IntAbsInstruction.src/M000176.html
|
299
|
-
- doc/classes/IntAbsInstruction.src/M000177.html
|
300
|
-
- doc/classes/IntAbsInstruction.src/M000178.html
|
301
|
-
- doc/classes/IntAddInstruction.html
|
302
|
-
- doc/classes/IntAddInstruction.src/M000147.html
|
303
|
-
- doc/classes/IntAddInstruction.src/M000148.html
|
304
|
-
- doc/classes/IntAddInstruction.src/M000149.html
|
305
|
-
- doc/classes/IntAddInstruction.src/M000150.html
|
306
|
-
- doc/classes/IntDepthInstruction.html
|
307
|
-
- doc/classes/IntDepthInstruction.src/M000211.html
|
308
|
-
- doc/classes/IntDepthInstruction.src/M000212.html
|
309
|
-
- doc/classes/IntDepthInstruction.src/M000213.html
|
310
|
-
- doc/classes/IntDepthInstruction.src/M000214.html
|
311
|
-
- doc/classes/IntDivideInstruction.html
|
312
|
-
- doc/classes/IntDivideInstruction.src/M000155.html
|
313
|
-
- doc/classes/IntDivideInstruction.src/M000156.html
|
314
|
-
- doc/classes/IntDivideInstruction.src/M000157.html
|
315
|
-
- doc/classes/IntDivideInstruction.src/M000158.html
|
316
|
-
- doc/classes/IntDuplicateInstruction.html
|
317
|
-
- doc/classes/IntDuplicateInstruction.src/M000203.html
|
318
|
-
- doc/classes/IntDuplicateInstruction.src/M000204.html
|
319
|
-
- doc/classes/IntDuplicateInstruction.src/M000205.html
|
320
|
-
- doc/classes/IntDuplicateInstruction.src/M000206.html
|
321
|
-
- doc/classes/IntEqualQInstruction.html
|
322
|
-
- doc/classes/IntEqualQInstruction.src/M000023.html
|
323
|
-
- doc/classes/IntEqualQInstruction.src/M000024.html
|
324
|
-
- doc/classes/IntEqualQInstruction.src/M000025.html
|
325
|
-
- doc/classes/IntEqualQInstruction.src/M000026.html
|
326
|
-
- doc/classes/IntFlushInstruction.html
|
327
|
-
- doc/classes/IntFlushInstruction.src/M000215.html
|
328
|
-
- doc/classes/IntFlushInstruction.src/M000216.html
|
329
|
-
- doc/classes/IntFlushInstruction.src/M000217.html
|
330
|
-
- doc/classes/IntFlushInstruction.src/M000218.html
|
331
|
-
- doc/classes/IntFromBoolInstruction.html
|
332
|
-
- doc/classes/IntFromBoolInstruction.src/M000051.html
|
333
|
-
- doc/classes/IntFromBoolInstruction.src/M000052.html
|
334
|
-
- doc/classes/IntFromBoolInstruction.src/M000053.html
|
335
|
-
- doc/classes/IntFromBoolInstruction.src/M000054.html
|
336
|
-
- doc/classes/IntFromFloatInstruction.html
|
337
|
-
- doc/classes/IntFromFloatInstruction.src/M000059.html
|
338
|
-
- doc/classes/IntFromFloatInstruction.src/M000060.html
|
339
|
-
- doc/classes/IntFromFloatInstruction.src/M000061.html
|
340
|
-
- doc/classes/IntFromFloatInstruction.src/M000062.html
|
341
|
-
- doc/classes/IntGreaterThanQInstruction.html
|
342
|
-
- doc/classes/IntGreaterThanQInstruction.src/M000031.html
|
343
|
-
- doc/classes/IntGreaterThanQInstruction.src/M000032.html
|
344
|
-
- doc/classes/IntGreaterThanQInstruction.src/M000033.html
|
345
|
-
- doc/classes/IntGreaterThanQInstruction.src/M000034.html
|
346
|
-
- doc/classes/IntIfInstruction.html
|
347
|
-
- doc/classes/IntIfInstruction.src/M000043.html
|
348
|
-
- doc/classes/IntIfInstruction.src/M000044.html
|
349
|
-
- doc/classes/IntIfInstruction.src/M000045.html
|
350
|
-
- doc/classes/IntIfInstruction.src/M000046.html
|
351
|
-
- doc/classes/IntLessThanQInstruction.html
|
352
|
-
- doc/classes/IntLessThanQInstruction.src/M000027.html
|
353
|
-
- doc/classes/IntLessThanQInstruction.src/M000028.html
|
354
|
-
- doc/classes/IntLessThanQInstruction.src/M000029.html
|
355
|
-
- doc/classes/IntLessThanQInstruction.src/M000030.html
|
356
|
-
- doc/classes/IntMaxInstruction.html
|
357
|
-
- doc/classes/IntMaxInstruction.src/M000167.html
|
358
|
-
- doc/classes/IntMaxInstruction.src/M000168.html
|
359
|
-
- doc/classes/IntMaxInstruction.src/M000169.html
|
360
|
-
- doc/classes/IntMaxInstruction.src/M000170.html
|
361
|
-
- doc/classes/IntMinInstruction.html
|
362
|
-
- doc/classes/IntMinInstruction.src/M000171.html
|
363
|
-
- doc/classes/IntMinInstruction.src/M000172.html
|
364
|
-
- doc/classes/IntMinInstruction.src/M000173.html
|
365
|
-
- doc/classes/IntMinInstruction.src/M000174.html
|
366
|
-
- doc/classes/IntModuloInstruction.html
|
367
|
-
- doc/classes/IntModuloInstruction.src/M000163.html
|
368
|
-
- doc/classes/IntModuloInstruction.src/M000164.html
|
369
|
-
- doc/classes/IntModuloInstruction.src/M000165.html
|
370
|
-
- doc/classes/IntModuloInstruction.src/M000166.html
|
371
|
-
- doc/classes/IntMultiplyInstruction.html
|
372
|
-
- doc/classes/IntMultiplyInstruction.src/M000151.html
|
373
|
-
- doc/classes/IntMultiplyInstruction.src/M000152.html
|
374
|
-
- doc/classes/IntMultiplyInstruction.src/M000153.html
|
375
|
-
- doc/classes/IntMultiplyInstruction.src/M000154.html
|
376
|
-
- doc/classes/IntNegativeInstruction.html
|
377
|
-
- doc/classes/IntNegativeInstruction.src/M000179.html
|
378
|
-
- doc/classes/IntNegativeInstruction.src/M000180.html
|
379
|
-
- doc/classes/IntNegativeInstruction.src/M000181.html
|
380
|
-
- doc/classes/IntNegativeInstruction.src/M000182.html
|
381
|
-
- doc/classes/IntPopInstruction.html
|
382
|
-
- doc/classes/IntPopInstruction.src/M000195.html
|
383
|
-
- doc/classes/IntPopInstruction.src/M000196.html
|
384
|
-
- doc/classes/IntPopInstruction.src/M000197.html
|
385
|
-
- doc/classes/IntPopInstruction.src/M000198.html
|
386
|
-
- doc/classes/IntRandomInstruction.html
|
387
|
-
- doc/classes/IntRandomInstruction.src/M000183.html
|
388
|
-
- doc/classes/IntRandomInstruction.src/M000184.html
|
389
|
-
- doc/classes/IntRandomInstruction.src/M000185.html
|
390
|
-
- doc/classes/IntRandomInstruction.src/M000186.html
|
391
|
-
- doc/classes/IntRotateInstruction.html
|
392
|
-
- doc/classes/IntRotateInstruction.src/M000207.html
|
393
|
-
- doc/classes/IntRotateInstruction.src/M000208.html
|
394
|
-
- doc/classes/IntRotateInstruction.src/M000209.html
|
395
|
-
- doc/classes/IntRotateInstruction.src/M000210.html
|
396
|
-
- doc/classes/IntSubtractInstruction.html
|
397
|
-
- doc/classes/IntSubtractInstruction.src/M000159.html
|
398
|
-
- doc/classes/IntSubtractInstruction.src/M000160.html
|
399
|
-
- doc/classes/IntSubtractInstruction.src/M000161.html
|
400
|
-
- doc/classes/IntSubtractInstruction.src/M000162.html
|
401
|
-
- doc/classes/IntSwapInstruction.html
|
402
|
-
- doc/classes/IntSwapInstruction.src/M000199.html
|
403
|
-
- doc/classes/IntSwapInstruction.src/M000200.html
|
404
|
-
- doc/classes/IntSwapInstruction.src/M000201.html
|
405
|
-
- doc/classes/IntSwapInstruction.src/M000202.html
|
406
|
-
- doc/classes/IntType.html
|
407
|
-
- doc/classes/IntType.src/M000235.html
|
408
|
-
- doc/classes/IntType.src/M000236.html
|
409
|
-
- doc/classes/IntType.src/M000237.html
|
410
|
-
- doc/classes/IntType.src/M000238.html
|
411
|
-
- doc/classes/IntType.src/M000239.html
|
412
|
-
- doc/classes/LiteralNode.html
|
413
|
-
- doc/classes/LiteralNode.src/M000251.html
|
414
|
-
- doc/classes/LiteralNode.src/M000252.html
|
415
|
-
- doc/classes/LiteralNode.src/M000253.html
|
416
|
-
- doc/classes/Nudge.html
|
417
|
-
- doc/classes/Nudge/Channel.html
|
418
|
-
- doc/classes/Nudge/Channel.src/M000286.html
|
419
|
-
- doc/classes/Nudge/Channel.src/M000287.html
|
420
|
-
- doc/classes/Nudge/Channel.src/M000288.html
|
421
|
-
- doc/classes/Nudge/Channel.src/M000289.html
|
422
|
-
- doc/classes/Nudge/Channel.src/M000290.html
|
423
|
-
- doc/classes/Nudge/Channel.src/M000291.html
|
424
|
-
- doc/classes/Nudge/Channel.src/M000292.html
|
425
|
-
- doc/classes/Nudge/Channel.src/M000293.html
|
426
|
-
- doc/classes/Nudge/Channel.src/M000294.html
|
427
|
-
- doc/classes/Nudge/Channel.src/M000295.html
|
428
|
-
- doc/classes/Nudge/Channel.src/M000296.html
|
429
|
-
- doc/classes/Nudge/Channel.src/M000297.html
|
430
|
-
- doc/classes/Nudge/Channel.src/M000298.html
|
431
|
-
- doc/classes/Nudge/CodeBlock.html
|
432
|
-
- doc/classes/Nudge/CodeBlock.src/M000263.html
|
433
|
-
- doc/classes/Nudge/CodeBlock.src/M000264.html
|
434
|
-
- doc/classes/Nudge/CodeBlock.src/M000265.html
|
435
|
-
- doc/classes/Nudge/CodeBlock.src/M000266.html
|
436
|
-
- doc/classes/Nudge/CodeBlock.src/M000267.html
|
437
|
-
- doc/classes/Nudge/CodeBlock.src/M000268.html
|
438
|
-
- doc/classes/Nudge/CodeBlock.src/M000269.html
|
439
|
-
- doc/classes/Nudge/CodeBlock.src/M000270.html
|
440
|
-
- doc/classes/Nudge/CodeBlock.src/M000271.html
|
441
|
-
- doc/classes/Nudge/DeadLocation.html
|
442
|
-
- doc/classes/Nudge/DeadLocation.src/M000334.html
|
443
|
-
- doc/classes/Nudge/Erc.html
|
444
|
-
- doc/classes/Nudge/Erc.src/M000278.html
|
445
|
-
- doc/classes/Nudge/Erc.src/M000279.html
|
446
|
-
- doc/classes/Nudge/Erc.src/M000280.html
|
447
|
-
- doc/classes/Nudge/Erc.src/M000281.html
|
448
|
-
- doc/classes/Nudge/Erc.src/M000282.html
|
449
|
-
- doc/classes/Nudge/Erc.src/M000283.html
|
450
|
-
- doc/classes/Nudge/Erc.src/M000284.html
|
451
|
-
- doc/classes/Nudge/Erc.src/M000285.html
|
452
|
-
- doc/classes/Nudge/Individual.html
|
453
|
-
- doc/classes/Nudge/Individual.src/M000314.html
|
454
|
-
- doc/classes/Nudge/Individual.src/M000315.html
|
455
|
-
- doc/classes/Nudge/Individual.src/M000316.html
|
456
|
-
- doc/classes/Nudge/Individual.src/M000317.html
|
457
|
-
- doc/classes/Nudge/Individual.src/M000318.html
|
458
|
-
- doc/classes/Nudge/InstructionPoint.html
|
459
|
-
- doc/classes/Nudge/InstructionPoint.src/M000299.html
|
460
|
-
- doc/classes/Nudge/InstructionPoint.src/M000300.html
|
461
|
-
- doc/classes/Nudge/InstructionPoint.src/M000301.html
|
462
|
-
- doc/classes/Nudge/InstructionPoint.src/M000302.html
|
463
|
-
- doc/classes/Nudge/InstructionPoint.src/M000303.html
|
464
|
-
- doc/classes/Nudge/InstructionPoint.src/M000304.html
|
465
|
-
- doc/classes/Nudge/InstructionPoint.src/M000305.html
|
466
|
-
- doc/classes/Nudge/InstructionPoint.src/M000306.html
|
467
|
-
- doc/classes/Nudge/InstructionPoint/InstructionNotFoundError.html
|
468
|
-
- doc/classes/Nudge/Interpreter.html
|
469
|
-
- doc/classes/Nudge/Interpreter.src/M000257.html
|
470
|
-
- doc/classes/Nudge/Interpreter.src/M000258.html
|
471
|
-
- doc/classes/Nudge/Interpreter.src/M000259.html
|
472
|
-
- doc/classes/Nudge/Interpreter.src/M000260.html
|
473
|
-
- doc/classes/Nudge/Interpreter.src/M000261.html
|
474
|
-
- doc/classes/Nudge/LiteralPoint.html
|
475
|
-
- doc/classes/Nudge/LiteralPoint.src/M000272.html
|
476
|
-
- doc/classes/Nudge/LiteralPoint.src/M000273.html
|
477
|
-
- doc/classes/Nudge/LiteralPoint.src/M000274.html
|
478
|
-
- doc/classes/Nudge/LiteralPoint.src/M000275.html
|
479
|
-
- doc/classes/Nudge/LiteralPoint.src/M000276.html
|
480
|
-
- doc/classes/Nudge/LiteralPoint.src/M000277.html
|
481
|
-
- doc/classes/Nudge/Location.html
|
482
|
-
- doc/classes/Nudge/Location.src/M000319.html
|
483
|
-
- doc/classes/Nudge/Location.src/M000320.html
|
484
|
-
- doc/classes/Nudge/Location.src/M000321.html
|
485
|
-
- doc/classes/Nudge/Location.src/M000322.html
|
486
|
-
- doc/classes/Nudge/Location.src/M000323.html
|
487
|
-
- doc/classes/Nudge/Location.src/M000324.html
|
488
|
-
- doc/classes/Nudge/Location.src/M000325.html
|
489
|
-
- doc/classes/Nudge/Location.src/M000326.html
|
490
|
-
- doc/classes/Nudge/Location.src/M000327.html
|
491
|
-
- doc/classes/Nudge/Location.src/M000328.html
|
492
|
-
- doc/classes/Nudge/Location.src/M000329.html
|
493
|
-
- doc/classes/Nudge/Location.src/M000330.html
|
494
|
-
- doc/classes/Nudge/Location.src/M000331.html
|
495
|
-
- doc/classes/Nudge/Location.src/M000332.html
|
496
|
-
- doc/classes/Nudge/Location.src/M000333.html
|
497
|
-
- doc/classes/Nudge/NondominatedSubset.html
|
498
|
-
- doc/classes/Nudge/NondominatedSubset.src/M000005.html
|
499
|
-
- doc/classes/Nudge/NondominatedSubset.src/M000006.html
|
500
|
-
- doc/classes/Nudge/NondominatedSubset.src/M000007.html
|
501
|
-
- doc/classes/Nudge/NondominatedSubset.src/M000339.html
|
502
|
-
- doc/classes/Nudge/NondominatedSubset.src/M000340.html
|
503
|
-
- doc/classes/Nudge/NondominatedSubset.src/M000341.html
|
504
|
-
- doc/classes/Nudge/PopulationResample.html
|
505
|
-
- doc/classes/Nudge/PopulationResample.src/M000003.html
|
506
|
-
- doc/classes/Nudge/PopulationResample.src/M000337.html
|
507
|
-
- doc/classes/Nudge/ProgramPoint.html
|
508
|
-
- doc/classes/Nudge/ProgramPoint.src/M000262.html
|
509
|
-
- doc/classes/Nudge/RandomGuess.html
|
510
|
-
- doc/classes/Nudge/RandomGuess.src/M000002.html
|
511
|
-
- doc/classes/Nudge/RandomGuess.src/M000336.html
|
512
|
-
- doc/classes/Nudge/ResampleValues.html
|
513
|
-
- doc/classes/Nudge/ResampleValues.src/M000004.html
|
514
|
-
- doc/classes/Nudge/ResampleValues.src/M000338.html
|
515
|
-
- doc/classes/Nudge/SearchOperator.html
|
516
|
-
- doc/classes/Nudge/SearchOperator.src/M000001.html
|
517
|
-
- doc/classes/Nudge/SearchOperator.src/M000335.html
|
518
|
-
- doc/classes/Nudge/Stack.html
|
519
|
-
- doc/classes/Nudge/Stack.src/M000307.html
|
520
|
-
- doc/classes/Nudge/Stack.src/M000308.html
|
521
|
-
- doc/classes/Nudge/Stack.src/M000309.html
|
522
|
-
- doc/classes/Nudge/Stack.src/M000310.html
|
523
|
-
- doc/classes/Nudge/Stack.src/M000311.html
|
524
|
-
- doc/classes/Nudge/Stack.src/M000312.html
|
525
|
-
- doc/classes/Nudge/Stack.src/M000313.html
|
526
|
-
- doc/classes/Nudge/UniformBackboneCrossover.html
|
527
|
-
- doc/classes/Nudge/UniformBackboneCrossover.src/M000008.html
|
528
|
-
- doc/classes/Nudge/UniformBackboneCrossover.src/M000342.html
|
529
|
-
- doc/classes/NudgeType.html
|
530
|
-
- doc/classes/NudgeType.src/M000225.html
|
531
|
-
- doc/classes/NudgeType.src/M000226.html
|
532
|
-
- doc/classes/NudgeType.src/M000227.html
|
533
|
-
- doc/classes/NudgeType.src/M000228.html
|
534
|
-
- doc/classes/NudgeType.src/M000229.html
|
535
|
-
- doc/classes/NudgeType.src/M000230.html
|
536
|
-
- doc/classes/NudgeType.src/M000231.html
|
537
|
-
- doc/classes/NudgeType.src/M000232.html
|
538
|
-
- doc/classes/NudgeType.src/M000233.html
|
539
|
-
- doc/classes/NudgeType.src/M000234.html
|
540
|
-
- doc/created.rid
|
541
|
-
- doc/files/lib/instructions/bool_basics_rb.html
|
542
|
-
- doc/files/lib/instructions/comparisons_rb.html
|
543
|
-
- doc/files/lib/instructions/conditionals_rb.html
|
544
|
-
- doc/files/lib/instructions/conversions_rb.html
|
545
|
-
- doc/files/lib/instructions/exec_rb.html
|
546
|
-
- doc/files/lib/instructions/float_arithmetic_rb.html
|
547
|
-
- doc/files/lib/instructions/float_transcendental_rb.html
|
548
|
-
- doc/files/lib/instructions/infrastructure_rb.html
|
549
|
-
- doc/files/lib/instructions/int_arithmetic_rb.html
|
550
|
-
- doc/files/lib/instructions/random_value_rb.html
|
551
|
-
- doc/files/lib/instructions/stack_manipulation_rb.html
|
552
|
-
- doc/files/lib/interpreter/grammars/nudge_language_helpers_rb.html
|
553
|
-
- doc/files/lib/interpreter/grammars/nudge_language_treetop.html
|
554
|
-
- doc/files/lib/interpreter/interpreter_rb.html
|
555
|
-
- doc/files/lib/interpreter/programPoints_rb.html
|
556
|
-
- doc/files/lib/interpreter/stack_rb.html
|
557
|
-
- doc/files/lib/interpreter/types/codeType_rb.html
|
558
|
-
- doc/files/lib/interpreter/types/codeType_rb.src/M000001.html
|
559
|
-
- doc/files/lib/interpreter/types/codeType_rb.src/M000002.html
|
560
|
-
- doc/files/lib/interpreter/types/pushTypes_rb.html
|
561
|
-
- doc/files/lib/nudge_rb.html
|
562
|
-
- doc/files/lib/search/evaluators/structural_complexity_rb.html
|
563
|
-
- doc/files/lib/search/helpers_rb.html
|
564
|
-
- doc/files/lib/search/individual/individual_rb.html
|
565
|
-
- doc/files/lib/search/locations/location_rb.html
|
566
|
-
- doc/files/lib/search/operators/basic_operators_rb.html
|
567
|
-
- doc/fr_class_index.html
|
568
|
-
- doc/fr_file_index.html
|
569
|
-
- doc/fr_method_index.html
|
570
|
-
- doc/index.html
|
571
|
-
- doc/rdoc-style.css
|
572
|
-
- features/parser_recognizes_nudge_language.feature
|
573
|
-
- lib/instructions/bool_basics.rb
|
574
|
-
- lib/instructions/code_basics.rb
|
575
|
-
- lib/instructions/comparisons.rb
|
576
|
-
- lib/instructions/conditionals.rb
|
577
|
-
- lib/instructions/conversions.rb
|
578
|
-
- lib/instructions/exec.rb
|
579
|
-
- lib/instructions/float_arithmetic.rb
|
580
|
-
- lib/instructions/float_transcendental.rb
|
63
|
+
- lib/instructions/bool/bool_and.rb
|
64
|
+
- lib/instructions/bool/bool_define.rb
|
65
|
+
- lib/instructions/bool/bool_depth.rb
|
66
|
+
- lib/instructions/bool/bool_duplicate.rb
|
67
|
+
- lib/instructions/bool/bool_equal_q.rb
|
68
|
+
- lib/instructions/bool/bool_flush.rb
|
69
|
+
- lib/instructions/bool/bool_not.rb
|
70
|
+
- lib/instructions/bool/bool_or.rb
|
71
|
+
- lib/instructions/bool/bool_pop.rb
|
72
|
+
- lib/instructions/bool/bool_random.rb
|
73
|
+
- lib/instructions/bool/bool_rotate.rb
|
74
|
+
- lib/instructions/bool/bool_shove.rb
|
75
|
+
- lib/instructions/bool/bool_swap.rb
|
76
|
+
- lib/instructions/bool/bool_xor.rb
|
77
|
+
- lib/instructions/bool/bool_yank.rb
|
78
|
+
- lib/instructions/bool/bool_yankdup.rb
|
79
|
+
- lib/instructions/code/code_atom_q.rb
|
80
|
+
- lib/instructions/code/code_backbone_points.rb
|
81
|
+
- lib/instructions/code/code_car.rb
|
82
|
+
- lib/instructions/code/code_cdr.rb
|
83
|
+
- lib/instructions/code/code_concatenate.rb
|
84
|
+
- lib/instructions/code/code_cons.rb
|
85
|
+
- lib/instructions/code/code_container.rb
|
86
|
+
- lib/instructions/code/code_contains_q.rb
|
87
|
+
- lib/instructions/code/code_define.rb
|
88
|
+
- lib/instructions/code/code_depth.rb
|
89
|
+
- lib/instructions/code/code_discrepancy.rb
|
90
|
+
- lib/instructions/code/code_do_count.rb
|
91
|
+
- lib/instructions/code/code_do_range.rb
|
92
|
+
- lib/instructions/code/code_do_times.rb
|
93
|
+
- lib/instructions/code/code_duplicate.rb
|
94
|
+
- lib/instructions/code/code_equal_q.rb
|
95
|
+
- lib/instructions/code/code_execute.rb
|
96
|
+
- lib/instructions/code/code_execute_then_pop.rb
|
97
|
+
- lib/instructions/code/code_flush.rb
|
98
|
+
- lib/instructions/code/code_gsub.rb
|
99
|
+
- lib/instructions/code/code_if.rb
|
100
|
+
- lib/instructions/code/code_instructions.rb
|
101
|
+
- lib/instructions/code/code_list.rb
|
102
|
+
- lib/instructions/code/code_member_q.rb
|
103
|
+
- lib/instructions/code/code_name_lookup.rb
|
104
|
+
- lib/instructions/code/code_noop.rb
|
105
|
+
- lib/instructions/code/code_nth.rb
|
106
|
+
- lib/instructions/code/code_nth_cdr.rb
|
107
|
+
- lib/instructions/code/code_nth_point.rb
|
108
|
+
- lib/instructions/code/code_null_q.rb
|
109
|
+
- lib/instructions/code/code_parses_q.rb
|
110
|
+
- lib/instructions/code/code_points.rb
|
111
|
+
- lib/instructions/code/code_pop.rb
|
112
|
+
- lib/instructions/code/code_position.rb
|
113
|
+
- lib/instructions/code/code_quote.rb
|
114
|
+
- lib/instructions/code/code_replace_nth_point.rb
|
115
|
+
- lib/instructions/code/code_rotate.rb
|
116
|
+
- lib/instructions/code/code_shove.rb
|
117
|
+
- lib/instructions/code/code_swap.rb
|
118
|
+
- lib/instructions/code/code_yank.rb
|
119
|
+
- lib/instructions/code/code_yankdup.rb
|
120
|
+
- lib/instructions/conversion/bool_from_float.rb
|
121
|
+
- lib/instructions/conversion/bool_from_int.rb
|
122
|
+
- lib/instructions/conversion/code_from_bool.rb
|
123
|
+
- lib/instructions/conversion/code_from_float.rb
|
124
|
+
- lib/instructions/conversion/code_from_int.rb
|
125
|
+
- lib/instructions/conversion/code_from_name.rb
|
126
|
+
- lib/instructions/conversion/float_from_bool.rb
|
127
|
+
- lib/instructions/conversion/float_from_int.rb
|
128
|
+
- lib/instructions/conversion/int_from_bool.rb
|
129
|
+
- lib/instructions/conversion/int_from_float.rb
|
130
|
+
- lib/instructions/exec/exec_define.rb
|
131
|
+
- lib/instructions/exec/exec_depth.rb
|
132
|
+
- lib/instructions/exec/exec_do_count.rb
|
133
|
+
- lib/instructions/exec/exec_do_range.rb
|
134
|
+
- lib/instructions/exec/exec_do_times.rb
|
135
|
+
- lib/instructions/exec/exec_duplicate.rb
|
136
|
+
- lib/instructions/exec/exec_equal_q.rb
|
137
|
+
- lib/instructions/exec/exec_flush.rb
|
138
|
+
- lib/instructions/exec/exec_if.rb
|
139
|
+
- lib/instructions/exec/exec_k.rb
|
140
|
+
- lib/instructions/exec/exec_pop.rb
|
141
|
+
- lib/instructions/exec/exec_rotate.rb
|
142
|
+
- lib/instructions/exec/exec_s.rb
|
143
|
+
- lib/instructions/exec/exec_shove.rb
|
144
|
+
- lib/instructions/exec/exec_swap.rb
|
145
|
+
- lib/instructions/exec/exec_y.rb
|
146
|
+
- lib/instructions/exec/exec_yank.rb
|
147
|
+
- lib/instructions/exec/exec_yankdup.rb
|
148
|
+
- lib/instructions/float/float_abs.rb
|
149
|
+
- lib/instructions/float/float_add.rb
|
150
|
+
- lib/instructions/float/float_cosine.rb
|
151
|
+
- lib/instructions/float/float_define.rb
|
152
|
+
- lib/instructions/float/float_depth.rb
|
153
|
+
- lib/instructions/float/float_divide.rb
|
154
|
+
- lib/instructions/float/float_duplicate.rb
|
155
|
+
- lib/instructions/float/float_equal_q.rb
|
156
|
+
- lib/instructions/float/float_flush.rb
|
157
|
+
- lib/instructions/float/float_greater_than_q.rb
|
158
|
+
- lib/instructions/float/float_if.rb
|
159
|
+
- lib/instructions/float/float_less_than_q.rb
|
160
|
+
- lib/instructions/float/float_max.rb
|
161
|
+
- lib/instructions/float/float_min.rb
|
162
|
+
- lib/instructions/float/float_modulo.rb
|
163
|
+
- lib/instructions/float/float_multiply.rb
|
164
|
+
- lib/instructions/float/float_negative.rb
|
165
|
+
- lib/instructions/float/float_pop.rb
|
166
|
+
- lib/instructions/float/float_power.rb
|
167
|
+
- lib/instructions/float/float_random.rb
|
168
|
+
- lib/instructions/float/float_rotate.rb
|
169
|
+
- lib/instructions/float/float_shove.rb
|
170
|
+
- lib/instructions/float/float_sine.rb
|
171
|
+
- lib/instructions/float/float_sqrt.rb
|
172
|
+
- lib/instructions/float/float_subtract.rb
|
173
|
+
- lib/instructions/float/float_swap.rb
|
174
|
+
- lib/instructions/float/float_tangent.rb
|
175
|
+
- lib/instructions/float/float_yank.rb
|
176
|
+
- lib/instructions/float/float_yankdup.rb
|
581
177
|
- lib/instructions/infrastructure.rb
|
582
|
-
- lib/instructions/
|
583
|
-
- lib/instructions/
|
584
|
-
- lib/instructions/
|
585
|
-
- lib/instructions/
|
586
|
-
- lib/instructions/
|
587
|
-
- lib/
|
588
|
-
- lib/
|
178
|
+
- lib/instructions/int/int_abs.rb
|
179
|
+
- lib/instructions/int/int_add.rb
|
180
|
+
- lib/instructions/int/int_define.rb
|
181
|
+
- lib/instructions/int/int_depth.rb
|
182
|
+
- lib/instructions/int/int_divide.rb
|
183
|
+
- lib/instructions/int/int_duplicate.rb
|
184
|
+
- lib/instructions/int/int_equal_q.rb
|
185
|
+
- lib/instructions/int/int_flush.rb
|
186
|
+
- lib/instructions/int/int_greater_than_q.rb
|
187
|
+
- lib/instructions/int/int_if.rb
|
188
|
+
- lib/instructions/int/int_less_than_q.rb
|
189
|
+
- lib/instructions/int/int_max.rb
|
190
|
+
- lib/instructions/int/int_min.rb
|
191
|
+
- lib/instructions/int/int_modulo.rb
|
192
|
+
- lib/instructions/int/int_multiply.rb
|
193
|
+
- lib/instructions/int/int_negative.rb
|
194
|
+
- lib/instructions/int/int_pop.rb
|
195
|
+
- lib/instructions/int/int_power.rb
|
196
|
+
- lib/instructions/int/int_random.rb
|
197
|
+
- lib/instructions/int/int_rotate.rb
|
198
|
+
- lib/instructions/int/int_shove.rb
|
199
|
+
- lib/instructions/int/int_subtract.rb
|
200
|
+
- lib/instructions/int/int_swap.rb
|
201
|
+
- lib/instructions/int/int_yank.rb
|
202
|
+
- lib/instructions/int/int_yankdup.rb
|
203
|
+
- lib/instructions/name/name_depth.rb
|
204
|
+
- lib/instructions/name/name_disable_lookup.rb
|
205
|
+
- lib/instructions/name/name_duplicate.rb
|
206
|
+
- lib/instructions/name/name_equal_q.rb
|
207
|
+
- lib/instructions/name/name_flush.rb
|
208
|
+
- lib/instructions/name/name_next.rb
|
209
|
+
- lib/instructions/name/name_pop.rb
|
210
|
+
- lib/instructions/name/name_random_bound.rb
|
211
|
+
- lib/instructions/name/name_rotate.rb
|
212
|
+
- lib/instructions/name/name_shove.rb
|
213
|
+
- lib/instructions/name/name_swap.rb
|
214
|
+
- lib/instructions/name/name_unbind.rb
|
215
|
+
- lib/instructions/name/name_yank.rb
|
216
|
+
- lib/instructions/name/name_yankdup.rb
|
217
|
+
- lib/interpreter/grammars/nudge_codeblock.treetop
|
218
|
+
- lib/interpreter/grammars/nudge_codeblock_helpers.rb
|
219
|
+
- lib/interpreter/grammars/nudge_common.treetop
|
220
|
+
- lib/interpreter/grammars/nudge_instruction.treetop
|
221
|
+
- lib/interpreter/grammars/nudge_instruction_helpers.rb
|
222
|
+
- lib/interpreter/grammars/nudge_reference.treetop
|
223
|
+
- lib/interpreter/grammars/nudge_reference_helpers.rb
|
224
|
+
- lib/interpreter/grammars/nudge_value.treetop
|
225
|
+
- lib/interpreter/grammars/nudge_value_helpers.rb
|
589
226
|
- lib/interpreter/interpreter.rb
|
227
|
+
- lib/interpreter/nudge_program.rb
|
228
|
+
- lib/interpreter/parse.tab.rb
|
590
229
|
- lib/interpreter/programPoints.rb
|
591
230
|
- lib/interpreter/stack.rb
|
592
231
|
- lib/interpreter/types/codeType.rb
|
593
232
|
- lib/interpreter/types/pushTypes.rb
|
594
233
|
- lib/nudge.rb
|
595
|
-
- lib/search/experiments/experiment.rb
|
596
|
-
- lib/search/helpers.rb
|
597
|
-
- lib/search/individual/batch.rb
|
598
|
-
- lib/search/individual/individual.rb
|
599
|
-
- lib/search/operators/basic_operators.rb
|
600
|
-
- lib/search/operators/evaluators.rb
|
601
|
-
- lib/search/operators/samplers_and_selectors.rb
|
602
|
-
- lib/search/stations/station.rb
|
603
|
-
- nudge.gemspec
|
604
|
-
- push_language_coverage.md
|
605
234
|
- readme.md
|
606
|
-
- script/console
|
607
|
-
- script/destroy
|
608
|
-
- script/generate
|
609
|
-
- spec/data/couchdb_spec.rb
|
610
235
|
- spec/fixtures/just_block.example
|
611
236
|
- spec/fixtures/just_block_with_newline.example
|
612
237
|
- spec/fixtures/long_arithmetic.example
|
613
238
|
- spec/fixtures/one_line_instr.example
|
614
239
|
- spec/fixtures/untidy1.example
|
615
240
|
- spec/fixtures/untidy1fixed.example
|
616
|
-
- spec/instructions/
|
617
|
-
- spec/instructions/
|
618
|
-
- spec/instructions/
|
619
|
-
- spec/instructions/
|
620
|
-
- spec/instructions/
|
621
|
-
- spec/instructions/
|
622
|
-
- spec/instructions/
|
623
|
-
- spec/instructions/
|
624
|
-
- spec/instructions/
|
625
|
-
- spec/instructions/
|
626
|
-
- spec/instructions/
|
241
|
+
- spec/instructions/bool/bool_and_spec.rb
|
242
|
+
- spec/instructions/bool/bool_define_spec.rb
|
243
|
+
- spec/instructions/bool/bool_depth_spec.rb
|
244
|
+
- spec/instructions/bool/bool_equal_q_spec.rb
|
245
|
+
- spec/instructions/bool/bool_flush_spec.rb
|
246
|
+
- spec/instructions/bool/bool_not_spec.rb
|
247
|
+
- spec/instructions/bool/bool_or_spec.rb
|
248
|
+
- spec/instructions/bool/bool_random_spec.rb
|
249
|
+
- spec/instructions/bool/bool_shove_spec.rb
|
250
|
+
- spec/instructions/bool/bool_xor_spec.rb
|
251
|
+
- spec/instructions/bool/bool_yank_spec.rb
|
252
|
+
- spec/instructions/bool/bool_yankdup_spec.rb
|
253
|
+
- spec/instructions/code/code_atom_q_spec.rb
|
254
|
+
- spec/instructions/code/code_backbone_points_spec.rb
|
255
|
+
- spec/instructions/code/code_car_spec.rb
|
256
|
+
- spec/instructions/code/code_cdr_spec.rb
|
257
|
+
- spec/instructions/code/code_concatenate_spec.rb
|
258
|
+
- spec/instructions/code/code_cons_spec.rb
|
259
|
+
- spec/instructions/code/code_container_spec.rb
|
260
|
+
- spec/instructions/code/code_contains_q_spec.rb
|
261
|
+
- spec/instructions/code/code_define_spec.rb
|
262
|
+
- spec/instructions/code/code_discrepancy_spec.rb
|
263
|
+
- spec/instructions/code/code_do_count_spec.rb
|
264
|
+
- spec/instructions/code/code_do_range_spec.rb
|
265
|
+
- spec/instructions/code/code_do_times_spec.rb
|
266
|
+
- spec/instructions/code/code_equal_q_spec.rb
|
267
|
+
- spec/instructions/code/code_execute_spec.rb
|
268
|
+
- spec/instructions/code/code_execute_then_pop_spec.rb
|
269
|
+
- spec/instructions/code/code_fromname_spec.rb
|
270
|
+
- spec/instructions/code/code_gsub_spec.rb
|
271
|
+
- spec/instructions/code/code_if_spec.rb
|
272
|
+
- spec/instructions/code/code_instructions_spec.rb
|
273
|
+
- spec/instructions/code/code_list_spec.rb
|
274
|
+
- spec/instructions/code/code_member_q_spec.rb
|
275
|
+
- spec/instructions/code/code_name_lookup_spec.rb
|
276
|
+
- spec/instructions/code/code_noop_spec.rb
|
277
|
+
- spec/instructions/code/code_nth_cdr_spec.rb
|
278
|
+
- spec/instructions/code/code_nth_point_spec.rb
|
279
|
+
- spec/instructions/code/code_nth_spec.rb
|
280
|
+
- spec/instructions/code/code_null_q_spec.rb
|
281
|
+
- spec/instructions/code/code_parses_q_spec.rb
|
282
|
+
- spec/instructions/code/code_points_spec.rb
|
283
|
+
- spec/instructions/code/code_position_spec.rb
|
284
|
+
- spec/instructions/code/code_quote_spec.rb
|
285
|
+
- spec/instructions/code/code_replace_nth_point_spec.rb
|
286
|
+
- spec/instructions/code/code_stack_spec.rb
|
287
|
+
- spec/instructions/exec/exec_define_spec.rb
|
288
|
+
- spec/instructions/exec/exec_depth_spec.rb
|
289
|
+
- spec/instructions/exec/exec_do_count_spec.rb
|
290
|
+
- spec/instructions/exec/exec_do_range_spec.rb
|
291
|
+
- spec/instructions/exec/exec_do_times_spec.rb
|
292
|
+
- spec/instructions/exec/exec_duplicate_spec.rb
|
293
|
+
- spec/instructions/exec/exec_equal_q_spec.rb
|
294
|
+
- spec/instructions/exec/exec_flush_spec.rb
|
295
|
+
- spec/instructions/exec/exec_if_spec.rb
|
296
|
+
- spec/instructions/exec/exec_k_spec.rb
|
297
|
+
- spec/instructions/exec/exec_pop_spec.rb
|
298
|
+
- spec/instructions/exec/exec_rotate_spec.rb
|
299
|
+
- spec/instructions/exec/exec_s_spec.rb
|
300
|
+
- spec/instructions/exec/exec_shove_spec.rb
|
301
|
+
- spec/instructions/exec/exec_swap_spec.rb
|
302
|
+
- spec/instructions/exec/exec_y_spec.rb
|
303
|
+
- spec/instructions/exec/exec_yank_spec.rb
|
304
|
+
- spec/instructions/exec/exec_yankdup_spec.rb
|
305
|
+
- spec/instructions/float/float_abs_spec.rb
|
306
|
+
- spec/instructions/float/float_add_spec.rb
|
307
|
+
- spec/instructions/float/float_cosine_spec.rb
|
308
|
+
- spec/instructions/float/float_define_spec.rb
|
309
|
+
- spec/instructions/float/float_depth_spec.rb
|
310
|
+
- spec/instructions/float/float_divide_spec.rb
|
311
|
+
- spec/instructions/float/float_equal_q_spec.rb
|
312
|
+
- spec/instructions/float/float_flush_spec.rb
|
313
|
+
- spec/instructions/float/float_greater_than_q_spec.rb
|
314
|
+
- spec/instructions/float/float_if_spec.rb
|
315
|
+
- spec/instructions/float/float_less_than_q_spec.rb
|
316
|
+
- spec/instructions/float/float_max_spec.rb
|
317
|
+
- spec/instructions/float/float_min_spec.rb
|
318
|
+
- spec/instructions/float/float_modulo_spec.rb
|
319
|
+
- spec/instructions/float/float_multiply_spec.rb
|
320
|
+
- spec/instructions/float/float_negative_spec.rb
|
321
|
+
- spec/instructions/float/float_power_spec.rb
|
322
|
+
- spec/instructions/float/float_random_spec.rb
|
323
|
+
- spec/instructions/float/float_shove_spec.rb
|
324
|
+
- spec/instructions/float/float_sine_spec.rb
|
325
|
+
- spec/instructions/float/float_sqrt_spec.rb
|
326
|
+
- spec/instructions/float/float_subtract_spec.rb
|
327
|
+
- spec/instructions/float/float_tangent_spec.rb
|
328
|
+
- spec/instructions/float/float_yank_spec.rb
|
329
|
+
- spec/instructions/float/float_yankdup_spec.rb
|
627
330
|
- spec/instructions/instruction_class_spec.rb
|
628
|
-
- spec/instructions/
|
629
|
-
- spec/instructions/
|
630
|
-
- spec/instructions/
|
631
|
-
- spec/instructions/
|
632
|
-
- spec/instructions/
|
633
|
-
- spec/instructions/
|
634
|
-
- spec/
|
635
|
-
- spec/
|
636
|
-
- spec/
|
331
|
+
- spec/instructions/int/int_abs_spec.rb
|
332
|
+
- spec/instructions/int/int_add_spec.rb
|
333
|
+
- spec/instructions/int/int_define_spec.rb
|
334
|
+
- spec/instructions/int/int_depth_spec.rb
|
335
|
+
- spec/instructions/int/int_divide_spec.rb
|
336
|
+
- spec/instructions/int/int_equal_q_spec.rb
|
337
|
+
- spec/instructions/int/int_flush_spec.rb
|
338
|
+
- spec/instructions/int/int_greater_than_q_spec.rb
|
339
|
+
- spec/instructions/int/int_if_spec.rb
|
340
|
+
- spec/instructions/int/int_less_than_q_spec.rb
|
341
|
+
- spec/instructions/int/int_max_spec.rb
|
342
|
+
- spec/instructions/int/int_min_spec.rb
|
343
|
+
- spec/instructions/int/int_modulo_spec.rb
|
344
|
+
- spec/instructions/int/int_multiply_spec.rb
|
345
|
+
- spec/instructions/int/int_negative_spec.rb
|
346
|
+
- spec/instructions/int/int_power_spec.rb
|
347
|
+
- spec/instructions/int/int_random_spec.rb
|
348
|
+
- spec/instructions/int/int_shove_spec.rb
|
349
|
+
- spec/instructions/int/int_subtract_spec.rb
|
350
|
+
- spec/instructions/int/int_yank_spec.rb
|
351
|
+
- spec/instructions/int/int_yankdup_spec.rb
|
352
|
+
- spec/instructions/name/name_depth_spec.rb
|
353
|
+
- spec/instructions/name/name_disable_lookup_spec.rb
|
354
|
+
- spec/instructions/name/name_equal_q_spec.rb
|
355
|
+
- spec/instructions/name/name_flush_spec.rb
|
356
|
+
- spec/instructions/name/name_next_spec.rb
|
357
|
+
- spec/instructions/name/name_random_bound_spec.rb
|
358
|
+
- spec/instructions/name/name_shove_spec.rb
|
359
|
+
- spec/instructions/name/name_unbind_spec.rb
|
360
|
+
- spec/instructions/name/name_yank_spec.rb
|
361
|
+
- spec/instructions/name/name_yankdup_spec.rb
|
362
|
+
- spec/instructions/split_these/bool_stack_spec.rb
|
363
|
+
- spec/instructions/split_these/conversions_spec.rb
|
364
|
+
- spec/instructions/split_these/float_stack_spec.rb
|
365
|
+
- spec/instructions/split_these/int_stack_spec.rb
|
366
|
+
- spec/instructions/split_these/name_stack_spec.rb
|
367
|
+
- spec/interpreter/codeblock_point_spec.rb
|
637
368
|
- spec/interpreter/codetype_spec.rb
|
638
|
-
- spec/interpreter/erc_spec.rb
|
639
369
|
- spec/interpreter/instruction_spec.rb
|
640
370
|
- spec/interpreter/interpreter_spec.rb
|
641
|
-
- spec/interpreter/
|
642
|
-
- spec/interpreter/
|
371
|
+
- spec/interpreter/nil_point_spec.rb
|
372
|
+
- spec/interpreter/nudge_program_spec.rb
|
373
|
+
- spec/interpreter/reference_point_spec.rb
|
643
374
|
- spec/interpreter/stack_spec.rb
|
644
375
|
- spec/interpreter/treetophelpers.rb
|
645
376
|
- spec/interpreter/types_spec.rb
|
646
|
-
- spec/
|
647
|
-
- spec/
|
648
|
-
- spec/search/helpers_spec.rb
|
649
|
-
- spec/search/individual_spec.rb
|
650
|
-
- spec/search/operators/any_one_sampler_spec.rb
|
651
|
-
- spec/search/operators/dominated_quantile_spec.rb
|
652
|
-
- spec/search/operators/duplicate_genomes_spec.rb
|
653
|
-
- spec/search/operators/evaluators/program_point_evaluator_spec.rb
|
654
|
-
- spec/search/operators/evaluators/test_case_evaluator_spec.rb
|
655
|
-
- spec/search/operators/infrastructure_spec.rb
|
656
|
-
- spec/search/operators/most_dominated_subset_spec.rb
|
657
|
-
- spec/search/operators/nondominated_subset_spec.rb
|
658
|
-
- spec/search/operators/pointCrossover_spec.rb
|
659
|
-
- spec/search/operators/pointDeletion_spec.rb
|
660
|
-
- spec/search/operators/pointMutation_spec.rb
|
661
|
-
- spec/search/operators/random_guess_spec.rb
|
662
|
-
- spec/search/operators/resample_and_clone_spec.rb
|
663
|
-
- spec/search/operators/resample_values_spec.rb
|
664
|
-
- spec/search/operators/sizePreservingMutation_spec.rb
|
665
|
-
- spec/search/operators/uniformBackboneCrossover_spec.rb
|
666
|
-
- spec/search/stations/station_spec.rb
|
377
|
+
- spec/interpreter/value_point_spec.rb
|
378
|
+
- spec/parsers/nudge_program_parser_spec.rb
|
667
379
|
- spec/spec_helper.rb
|
668
|
-
-
|
669
|
-
- test/test_nudge_generator.rb
|
380
|
+
- spec/support/shared_examples.rb
|
670
381
|
has_rdoc: true
|
671
|
-
homepage: http://github.com/Vaguery/
|
382
|
+
homepage: http://github.com/Vaguery/Nudge
|
672
383
|
licenses: []
|
673
384
|
|
674
385
|
post_install_message:
|
@@ -680,74 +391,163 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
680
391
|
requirements:
|
681
392
|
- - ">="
|
682
393
|
- !ruby/object:Gem::Version
|
394
|
+
segments:
|
395
|
+
- 1
|
396
|
+
- 9
|
397
|
+
- 1
|
683
398
|
version: 1.9.1
|
684
|
-
version:
|
685
399
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
686
400
|
requirements:
|
687
401
|
- - ">="
|
688
402
|
- !ruby/object:Gem::Version
|
403
|
+
segments:
|
404
|
+
- 0
|
689
405
|
version: "0"
|
690
|
-
version:
|
691
406
|
requirements: []
|
692
407
|
|
693
408
|
rubyforge_project:
|
694
|
-
rubygems_version: 1.3.
|
409
|
+
rubygems_version: 1.3.6
|
695
410
|
signing_key:
|
696
411
|
specification_version: 3
|
697
|
-
summary:
|
412
|
+
summary: Nudge Language interpreter
|
698
413
|
test_files:
|
699
|
-
- spec/
|
700
|
-
- spec/instructions/
|
701
|
-
- spec/instructions/
|
702
|
-
- spec/instructions/
|
703
|
-
- spec/instructions/
|
704
|
-
- spec/instructions/
|
705
|
-
- spec/instructions/
|
706
|
-
- spec/instructions/
|
707
|
-
- spec/instructions/
|
708
|
-
- spec/instructions/
|
709
|
-
- spec/instructions/
|
710
|
-
- spec/instructions/
|
414
|
+
- spec/instructions/bool/bool_and_spec.rb
|
415
|
+
- spec/instructions/bool/bool_define_spec.rb
|
416
|
+
- spec/instructions/bool/bool_depth_spec.rb
|
417
|
+
- spec/instructions/bool/bool_equal_q_spec.rb
|
418
|
+
- spec/instructions/bool/bool_flush_spec.rb
|
419
|
+
- spec/instructions/bool/bool_not_spec.rb
|
420
|
+
- spec/instructions/bool/bool_or_spec.rb
|
421
|
+
- spec/instructions/bool/bool_random_spec.rb
|
422
|
+
- spec/instructions/bool/bool_shove_spec.rb
|
423
|
+
- spec/instructions/bool/bool_xor_spec.rb
|
424
|
+
- spec/instructions/bool/bool_yank_spec.rb
|
425
|
+
- spec/instructions/bool/bool_yankdup_spec.rb
|
426
|
+
- spec/instructions/code/code_atom_q_spec.rb
|
427
|
+
- spec/instructions/code/code_backbone_points_spec.rb
|
428
|
+
- spec/instructions/code/code_car_spec.rb
|
429
|
+
- spec/instructions/code/code_cdr_spec.rb
|
430
|
+
- spec/instructions/code/code_concatenate_spec.rb
|
431
|
+
- spec/instructions/code/code_cons_spec.rb
|
432
|
+
- spec/instructions/code/code_container_spec.rb
|
433
|
+
- spec/instructions/code/code_contains_q_spec.rb
|
434
|
+
- spec/instructions/code/code_define_spec.rb
|
435
|
+
- spec/instructions/code/code_discrepancy_spec.rb
|
436
|
+
- spec/instructions/code/code_do_count_spec.rb
|
437
|
+
- spec/instructions/code/code_do_range_spec.rb
|
438
|
+
- spec/instructions/code/code_do_times_spec.rb
|
439
|
+
- spec/instructions/code/code_equal_q_spec.rb
|
440
|
+
- spec/instructions/code/code_execute_spec.rb
|
441
|
+
- spec/instructions/code/code_execute_then_pop_spec.rb
|
442
|
+
- spec/instructions/code/code_fromname_spec.rb
|
443
|
+
- spec/instructions/code/code_gsub_spec.rb
|
444
|
+
- spec/instructions/code/code_if_spec.rb
|
445
|
+
- spec/instructions/code/code_instructions_spec.rb
|
446
|
+
- spec/instructions/code/code_list_spec.rb
|
447
|
+
- spec/instructions/code/code_member_q_spec.rb
|
448
|
+
- spec/instructions/code/code_name_lookup_spec.rb
|
449
|
+
- spec/instructions/code/code_noop_spec.rb
|
450
|
+
- spec/instructions/code/code_nth_cdr_spec.rb
|
451
|
+
- spec/instructions/code/code_nth_point_spec.rb
|
452
|
+
- spec/instructions/code/code_nth_spec.rb
|
453
|
+
- spec/instructions/code/code_null_q_spec.rb
|
454
|
+
- spec/instructions/code/code_parses_q_spec.rb
|
455
|
+
- spec/instructions/code/code_points_spec.rb
|
456
|
+
- spec/instructions/code/code_position_spec.rb
|
457
|
+
- spec/instructions/code/code_quote_spec.rb
|
458
|
+
- spec/instructions/code/code_replace_nth_point_spec.rb
|
459
|
+
- spec/instructions/code/code_stack_spec.rb
|
460
|
+
- spec/instructions/exec/exec_define_spec.rb
|
461
|
+
- spec/instructions/exec/exec_depth_spec.rb
|
462
|
+
- spec/instructions/exec/exec_do_count_spec.rb
|
463
|
+
- spec/instructions/exec/exec_do_range_spec.rb
|
464
|
+
- spec/instructions/exec/exec_do_times_spec.rb
|
465
|
+
- spec/instructions/exec/exec_duplicate_spec.rb
|
466
|
+
- spec/instructions/exec/exec_equal_q_spec.rb
|
467
|
+
- spec/instructions/exec/exec_flush_spec.rb
|
468
|
+
- spec/instructions/exec/exec_if_spec.rb
|
469
|
+
- spec/instructions/exec/exec_k_spec.rb
|
470
|
+
- spec/instructions/exec/exec_pop_spec.rb
|
471
|
+
- spec/instructions/exec/exec_rotate_spec.rb
|
472
|
+
- spec/instructions/exec/exec_s_spec.rb
|
473
|
+
- spec/instructions/exec/exec_shove_spec.rb
|
474
|
+
- spec/instructions/exec/exec_swap_spec.rb
|
475
|
+
- spec/instructions/exec/exec_y_spec.rb
|
476
|
+
- spec/instructions/exec/exec_yank_spec.rb
|
477
|
+
- spec/instructions/exec/exec_yankdup_spec.rb
|
478
|
+
- spec/instructions/float/float_abs_spec.rb
|
479
|
+
- spec/instructions/float/float_add_spec.rb
|
480
|
+
- spec/instructions/float/float_cosine_spec.rb
|
481
|
+
- spec/instructions/float/float_define_spec.rb
|
482
|
+
- spec/instructions/float/float_depth_spec.rb
|
483
|
+
- spec/instructions/float/float_divide_spec.rb
|
484
|
+
- spec/instructions/float/float_equal_q_spec.rb
|
485
|
+
- spec/instructions/float/float_flush_spec.rb
|
486
|
+
- spec/instructions/float/float_greater_than_q_spec.rb
|
487
|
+
- spec/instructions/float/float_if_spec.rb
|
488
|
+
- spec/instructions/float/float_less_than_q_spec.rb
|
489
|
+
- spec/instructions/float/float_max_spec.rb
|
490
|
+
- spec/instructions/float/float_min_spec.rb
|
491
|
+
- spec/instructions/float/float_modulo_spec.rb
|
492
|
+
- spec/instructions/float/float_multiply_spec.rb
|
493
|
+
- spec/instructions/float/float_negative_spec.rb
|
494
|
+
- spec/instructions/float/float_power_spec.rb
|
495
|
+
- spec/instructions/float/float_random_spec.rb
|
496
|
+
- spec/instructions/float/float_shove_spec.rb
|
497
|
+
- spec/instructions/float/float_sine_spec.rb
|
498
|
+
- spec/instructions/float/float_sqrt_spec.rb
|
499
|
+
- spec/instructions/float/float_subtract_spec.rb
|
500
|
+
- spec/instructions/float/float_tangent_spec.rb
|
501
|
+
- spec/instructions/float/float_yank_spec.rb
|
502
|
+
- spec/instructions/float/float_yankdup_spec.rb
|
711
503
|
- spec/instructions/instruction_class_spec.rb
|
712
|
-
- spec/instructions/
|
713
|
-
- spec/instructions/
|
714
|
-
- spec/instructions/
|
715
|
-
- spec/instructions/
|
716
|
-
- spec/instructions/
|
717
|
-
- spec/instructions/
|
718
|
-
- spec/
|
719
|
-
- spec/
|
720
|
-
- spec/
|
504
|
+
- spec/instructions/int/int_abs_spec.rb
|
505
|
+
- spec/instructions/int/int_add_spec.rb
|
506
|
+
- spec/instructions/int/int_define_spec.rb
|
507
|
+
- spec/instructions/int/int_depth_spec.rb
|
508
|
+
- spec/instructions/int/int_divide_spec.rb
|
509
|
+
- spec/instructions/int/int_equal_q_spec.rb
|
510
|
+
- spec/instructions/int/int_flush_spec.rb
|
511
|
+
- spec/instructions/int/int_greater_than_q_spec.rb
|
512
|
+
- spec/instructions/int/int_if_spec.rb
|
513
|
+
- spec/instructions/int/int_less_than_q_spec.rb
|
514
|
+
- spec/instructions/int/int_max_spec.rb
|
515
|
+
- spec/instructions/int/int_min_spec.rb
|
516
|
+
- spec/instructions/int/int_modulo_spec.rb
|
517
|
+
- spec/instructions/int/int_multiply_spec.rb
|
518
|
+
- spec/instructions/int/int_negative_spec.rb
|
519
|
+
- spec/instructions/int/int_power_spec.rb
|
520
|
+
- spec/instructions/int/int_random_spec.rb
|
521
|
+
- spec/instructions/int/int_shove_spec.rb
|
522
|
+
- spec/instructions/int/int_subtract_spec.rb
|
523
|
+
- spec/instructions/int/int_yank_spec.rb
|
524
|
+
- spec/instructions/int/int_yankdup_spec.rb
|
525
|
+
- spec/instructions/name/name_depth_spec.rb
|
526
|
+
- spec/instructions/name/name_disable_lookup_spec.rb
|
527
|
+
- spec/instructions/name/name_equal_q_spec.rb
|
528
|
+
- spec/instructions/name/name_flush_spec.rb
|
529
|
+
- spec/instructions/name/name_next_spec.rb
|
530
|
+
- spec/instructions/name/name_random_bound_spec.rb
|
531
|
+
- spec/instructions/name/name_shove_spec.rb
|
532
|
+
- spec/instructions/name/name_unbind_spec.rb
|
533
|
+
- spec/instructions/name/name_yank_spec.rb
|
534
|
+
- spec/instructions/name/name_yankdup_spec.rb
|
535
|
+
- spec/instructions/split_these/bool_stack_spec.rb
|
536
|
+
- spec/instructions/split_these/conversions_spec.rb
|
537
|
+
- spec/instructions/split_these/float_stack_spec.rb
|
538
|
+
- spec/instructions/split_these/int_stack_spec.rb
|
539
|
+
- spec/instructions/split_these/name_stack_spec.rb
|
540
|
+
- spec/interpreter/codeblock_point_spec.rb
|
721
541
|
- spec/interpreter/codetype_spec.rb
|
722
|
-
- spec/interpreter/erc_spec.rb
|
723
542
|
- spec/interpreter/instruction_spec.rb
|
724
543
|
- spec/interpreter/interpreter_spec.rb
|
725
|
-
- spec/interpreter/
|
726
|
-
- spec/interpreter/
|
544
|
+
- spec/interpreter/nil_point_spec.rb
|
545
|
+
- spec/interpreter/nudge_program_spec.rb
|
546
|
+
- spec/interpreter/reference_point_spec.rb
|
727
547
|
- spec/interpreter/stack_spec.rb
|
728
548
|
- spec/interpreter/treetophelpers.rb
|
729
549
|
- spec/interpreter/types_spec.rb
|
730
|
-
- spec/
|
731
|
-
- spec/
|
732
|
-
- spec/search/helpers_spec.rb
|
733
|
-
- spec/search/individual_spec.rb
|
734
|
-
- spec/search/operators/any_one_sampler_spec.rb
|
735
|
-
- spec/search/operators/dominated_quantile_spec.rb
|
736
|
-
- spec/search/operators/duplicate_genomes_spec.rb
|
737
|
-
- spec/search/operators/evaluators/program_point_evaluator_spec.rb
|
738
|
-
- spec/search/operators/evaluators/test_case_evaluator_spec.rb
|
739
|
-
- spec/search/operators/infrastructure_spec.rb
|
740
|
-
- spec/search/operators/most_dominated_subset_spec.rb
|
741
|
-
- spec/search/operators/nondominated_subset_spec.rb
|
742
|
-
- spec/search/operators/pointCrossover_spec.rb
|
743
|
-
- spec/search/operators/pointDeletion_spec.rb
|
744
|
-
- spec/search/operators/pointMutation_spec.rb
|
745
|
-
- spec/search/operators/random_guess_spec.rb
|
746
|
-
- spec/search/operators/resample_and_clone_spec.rb
|
747
|
-
- spec/search/operators/resample_values_spec.rb
|
748
|
-
- spec/search/operators/sizePreservingMutation_spec.rb
|
749
|
-
- spec/search/operators/uniformBackboneCrossover_spec.rb
|
750
|
-
- spec/search/stations/station_spec.rb
|
550
|
+
- spec/interpreter/value_point_spec.rb
|
551
|
+
- spec/parsers/nudge_program_parser_spec.rb
|
751
552
|
- spec/spec_helper.rb
|
752
|
-
-
|
753
|
-
- test/test_nudge_generator.rb
|
553
|
+
- spec/support/shared_examples.rb
|