eyelang 1.7.16 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/docs/guide.md +231 -231
- package/docs/language-reference.md +130 -132
- package/examples/abstract-interpretation.pl +50 -0
- package/examples/access-control-policy.pl +52 -0
- package/examples/ackermann.pl +47 -0
- package/examples/age.pl +26 -0
- package/examples/aliases-and-namespaces.pl +20 -0
- package/examples/alignment-demo.pl +44 -0
- package/examples/allen-interval-calculus.pl +64 -0
- package/examples/ancestor.pl +22 -0
- package/examples/animal.pl +21 -0
- package/examples/annotation.pl +34 -0
- package/examples/auroracare.pl +309 -0
- package/examples/backward.pl +11 -0
- package/examples/basic-monadic.pl +10032 -0
- package/examples/bayes-diagnosis.pl +108 -0
- package/examples/bayes-therapy.pl +189 -0
- package/examples/beam-deflection.pl +48 -0
- package/examples/binomial-vandermonde.pl +49 -0
- package/examples/blocks-world-planning.pl +77 -0
- package/examples/bmi.pl +232 -0
- package/examples/braking-safety-worlds.pl +69 -0
- package/examples/buck-converter-design.pl +83 -0
- package/examples/cache-performance.pl +56 -0
- package/examples/canary-release.pl +51 -0
- package/examples/cat-koko.pl +24 -0
- package/examples/catalan-convolution.pl +37 -0
- package/examples/cdcl-sat-solver.pl +65 -0
- package/examples/chart-parser.pl +65 -0
- package/examples/clinical-trial-screening.pl +97 -0
- package/examples/collatz-1000.pl +45 -0
- package/examples/combinatorics-findall-sort.pl +38 -0
- package/examples/competitive-enzyme-kinetics.pl +78 -0
- package/examples/complex.pl +133 -0
- package/examples/composition-of-injective-functions-is-injective.pl +50 -0
- package/examples/context-association.pl +53 -0
- package/examples/context-schema-audit.pl +46 -0
- package/examples/continued-fraction-sqrt2.pl +36 -0
- package/examples/control-system.pl +76 -0
- package/examples/critical-path-schedule.pl +82 -0
- package/examples/cyclic-path.pl +18 -0
- package/examples/d3-group.pl +99 -0
- package/examples/dairy-energy-balance.pl +66 -0
- package/examples/data-negotiation.pl +38 -0
- package/examples/deep-taxonomy-10.pl +106 -0
- package/examples/deep-taxonomy-100.pl +376 -0
- package/examples/deep-taxonomy-1000.pl +3076 -0
- package/examples/deep-taxonomy-10000.pl +30076 -0
- package/examples/deep-taxonomy-100000.pl +300076 -0
- package/examples/delfour.pl +281 -0
- package/examples/deontic-logic.pl +52 -0
- package/examples/derived-backward-rule.pl +30 -0
- package/examples/derived-rule.pl +27 -0
- package/examples/diamond-property.pl +38 -0
- package/examples/dijkstra-findall-sort.pl +43 -0
- package/examples/dijkstra-risk-path.pl +87 -0
- package/examples/dijkstra.pl +50 -0
- package/examples/dining-philosophers.pl +147 -0
- package/examples/dog.pl +25 -0
- package/examples/dpv-odrl-purpose-mapping.pl +48 -0
- package/examples/drone-corridor-planner.pl +48 -0
- package/examples/easter-computus.pl +88 -0
- package/examples/electrical-rc-filter.pl +37 -0
- package/examples/epidemic-policy.pl +66 -0
- package/examples/equality-saturation.pl +84 -0
- package/examples/equivalence-classes-overlap-implies-same-class.pl +27 -0
- package/examples/eulerian-path.pl +87 -0
- package/examples/ev-range-worlds.pl +87 -0
- package/examples/existential-rule.pl +14 -0
- package/examples/exoplanet-validation-worlds.pl +94 -0
- package/examples/expression-eval.pl +45 -0
- package/examples/family-cousins.pl +67 -0
- package/examples/fastpow.pl +61 -0
- package/examples/fft8-numeric.pl +85 -0
- package/examples/fibonacci.pl +60 -0
- package/examples/field-nitrogen-balance.pl +73 -0
- package/examples/flandor.pl +296 -0
- package/examples/floating-point.pl +28 -0
- package/examples/four-color-map.pl +133 -0
- package/examples/fundamental-theorem-arithmetic.pl +119 -0
- package/examples/gd-step-certified.pl +162 -0
- package/examples/gdpr-compliance.pl +69 -0
- package/examples/good-cobbler.pl +16 -0
- package/examples/gps.pl +146 -0
- package/examples/graph-reachability.pl +33 -0
- package/examples/graph.pl +35 -0
- package/examples/gray-code-counter.pl +47 -0
- package/examples/greatest-lower-bound-uniqueness.pl +30 -0
- package/examples/group-inverse-uniqueness.pl +36 -0
- package/examples/hamiltonian-path.pl +51 -0
- package/examples/hamming-code.pl +109 -0
- package/examples/hanoi.pl +19 -0
- package/examples/heat-loss.pl +56 -0
- package/examples/herbrand-witnesses.pl +31 -0
- package/examples/heron-theorem.pl +42 -0
- package/examples/ideal-gas-law.pl +39 -0
- package/examples/illegitimate-reasoning.pl +88 -0
- package/examples/integer-partitions.pl +35 -0
- package/examples/intuitionistic-logic-kripke.pl +69 -0
- package/examples/job-shop-scheduling.pl +48 -0
- package/examples/knapsack-optimization.pl +46 -0
- package/examples/knowledge-engineering-alignment-flow.pl +46 -0
- package/examples/knuth-bendix-completion.pl +55 -0
- package/examples/language.pl +25 -0
- package/examples/law-of-cosines.pl +37 -0
- package/examples/least-squares-regression.pl +85 -0
- package/examples/linear-logic-resources.pl +51 -0
- package/examples/list-collection.pl +35 -0
- package/examples/lldm.pl +80 -0
- package/examples/manufacturing-quality-control.pl +73 -0
- package/examples/map-four-color-search.pl +65 -0
- package/examples/markov-logic-network.pl +87 -0
- package/examples/matrix-chain-order.pl +79 -0
- package/examples/matrix-noncommutativity.pl +43 -0
- package/examples/microgrid-dispatch.pl +89 -0
- package/examples/missionaries-cannibals.pl +53 -0
- package/examples/modal-logic-kripke.pl +45 -0
- package/examples/modular-exponentiation.pl +35 -0
- package/examples/monkey-bananas.pl +45 -0
- package/examples/n-queens-8.pl +35 -0
- package/examples/network-sla.pl +48 -0
- package/examples/newton-raphson.pl +48 -0
- package/examples/nixon-diamond.pl +37 -0
- package/examples/observability-log-correlation.pl +40 -0
- package/examples/odrl-dpv-fpv-trust-flow.pl +51 -0
- package/examples/odrl-dpv-healthcare-risk-ranked.pl +270 -0
- package/examples/odrl-dpv-risk-ranked.pl +320 -0
- package/examples/orbital-transfer-design.pl +116 -0
- package/examples/output/deep-taxonomy-10.pl +16 -0
- package/examples/output/deep-taxonomy-100.pl +16 -0
- package/examples/output/deep-taxonomy-1000.pl +16 -0
- package/examples/output/deep-taxonomy-10000.pl +16 -0
- package/examples/output/deep-taxonomy-100000.pl +16 -0
- package/examples/output/language.pl +6 -0
- package/examples/output/web-names.pl +3 -0
- package/examples/partial-evaluator.pl +74 -0
- package/examples/path-discovery.pl +45013 -0
- package/examples/peano-arithmetic.pl +33 -0
- package/examples/peano-calculus.pl +40 -0
- package/examples/peasant.pl +29 -0
- package/examples/pell-equation.pl +34 -0
- package/examples/pendulum-period.pl +50 -0
- package/examples/pointer-analysis.pl +50 -0
- package/examples/polynomial.pl +124 -0
- package/examples/prime-range.pl +45 -0
- package/examples/proof/access-control-policy.pl +158 -0
- package/examples/proof/age.pl +71 -0
- package/examples/proof/aliases-and-namespaces.pl +78 -0
- package/examples/proof/ancestor.pl +140 -0
- package/examples/proof/animal.pl +68 -0
- package/examples/proof/annotation.pl +80 -0
- package/examples/proof/backward.pl +22 -0
- package/examples/proof/bayes-diagnosis.pl +208 -0
- package/examples/proof/beam-deflection.pl +227 -0
- package/examples/proof/cache-performance.pl +310 -0
- package/examples/proof/canary-release.pl +172 -0
- package/examples/proof/cat-koko.pl +86 -0
- package/examples/proof/chart-parser.pl +474 -0
- package/examples/proof/clinical-trial-screening.pl +389 -0
- package/examples/proof/composition-of-injective-functions-is-injective.pl +258 -0
- package/examples/proof/context-association.pl +78 -0
- package/examples/proof/data-negotiation.pl +76 -0
- package/examples/proof/deontic-logic.pl +109 -0
- package/examples/proof/derived-backward-rule.pl +74 -0
- package/examples/proof/derived-rule.pl +43 -0
- package/examples/proof/diamond-property.pl +307 -0
- package/examples/proof/dog.pl +31 -0
- package/examples/proof/dpv-odrl-purpose-mapping.pl +348 -0
- package/examples/proof/electrical-rc-filter.pl +105 -0
- package/examples/proof/epidemic-policy.pl +774 -0
- package/examples/proof/equivalence-classes-overlap-implies-same-class.pl +1098 -0
- package/examples/proof/existential-rule.pl +32 -0
- package/examples/proof/expression-eval.pl +105 -0
- package/examples/proof/floating-point.pl +160 -0
- package/examples/proof/gdpr-compliance.pl +199 -0
- package/examples/proof/good-cobbler.pl +16 -0
- package/examples/proof/graph-reachability.pl +151 -0
- package/examples/proof/greatest-lower-bound-uniqueness.pl +150 -0
- package/examples/proof/group-inverse-uniqueness.pl +84 -0
- package/examples/proof/hanoi.pl +185 -0
- package/examples/proof/heat-loss.pl +228 -0
- package/examples/proof/ideal-gas-law.pl +151 -0
- package/examples/proof/intuitionistic-logic-kripke.pl +133 -0
- package/examples/proof/linear-logic-resources.pl +205 -0
- package/examples/proof/list-collection.pl +52 -0
- package/examples/proof/modal-logic-kripke.pl +125 -0
- package/examples/proof/nixon-diamond.pl +181 -0
- package/examples/proof/proof-contrapositive.pl +78 -0
- package/examples/proof/reusable-builtins.pl +124 -0
- package/examples/proof/security-incident-correlation.pl +270 -0
- package/examples/proof/socket-age.pl +32 -0
- package/examples/proof/socket-family.pl +59 -0
- package/examples/proof/socrates.pl +38 -0
- package/examples/proof/term-tools.pl +95 -0
- package/examples/proof/witch.pl +216 -0
- package/examples/proof-contrapositive.pl +27 -0
- package/examples/quadratic-formula.pl +56 -0
- package/examples/radioactive-decay.pl +58 -0
- package/examples/register-allocation.pl +77 -0
- package/examples/reusable-builtins.pl +36 -0
- package/examples/riemann-hypothesis.pl +110 -0
- package/examples/route-planning.pl +33 -0
- package/examples/sat-solver-dpll.pl +88 -0
- package/examples/security-incident-correlation.pl +69 -0
- package/examples/send-more-money.pl +71 -0
- package/examples/service-impact.pl +41 -0
- package/examples/shoelace-polygon-area.pl +22 -0
- package/examples/sieve.pl +20 -0
- package/examples/skolem-functions.pl +52 -0
- package/examples/socket-age.pl +39 -0
- package/examples/socket-family.pl +28 -0
- package/examples/socrates.pl +19 -0
- package/examples/stable-marriage.pl +92 -0
- package/examples/statistics-summary.pl +56 -0
- package/examples/stirling-bell-numbers.pl +69 -0
- package/examples/sudoku-4x4.pl +54 -0
- package/examples/superdense-coding.pl +84 -0
- package/examples/symbolic-derivative.pl +39 -0
- package/examples/term-tools.pl +32 -0
- package/examples/totient-summatory.pl +33 -0
- package/examples/trust-flow-provenance-threshold.pl +47 -0
- package/examples/truth-maintenance-system.pl +62 -0
- package/examples/turing.pl +69 -0
- package/examples/type-inference.pl +58 -0
- package/examples/vector-similarity.pl +60 -0
- package/examples/vulnerability-impact.pl +69 -0
- package/examples/web-names.pl +39 -0
- package/examples/weighted-interval-scheduling.pl +81 -0
- package/examples/witch.pl +38 -0
- package/examples/wolf-goat-cabbage.pl +56 -0
- package/examples/workplace-compliance.pl +41 -0
- package/examples/zebra.pl +45 -0
- package/package.json +1 -1
- package/playground.html +9 -12
- package/src/builtins/control.js +11 -2
- package/src/cli.js +5 -7
- package/src/parser.js +7 -38
- package/src/solver.js +89 -1
- package/src/term.js +18 -10
- package/test/conformance/README.md +7 -7
- package/test/conformance/cases/aggregation/044_findall_user_goal.pl +6 -0
- package/test/conformance/cases/aggregation/044_findall_user_goal.query +1 -1
- package/test/conformance/cases/aggregation/057_countall_empty_and_nonempty.pl +4 -0
- package/test/conformance/cases/aggregation/057_countall_empty_and_nonempty.query +1 -1
- package/test/conformance/cases/aggregation/058_sumall_numeric_template.pl +5 -0
- package/test/conformance/cases/aggregation/058_sumall_numeric_template.query +1 -1
- package/test/conformance/cases/aggregation/059_aggregate_min_template.pl +5 -0
- package/test/conformance/cases/aggregation/059_aggregate_min_template.query +1 -1
- package/test/conformance/cases/aggregation/060_aggregate_max_compound_key.pl +5 -0
- package/test/conformance/cases/aggregation/060_aggregate_max_compound_key.query +1 -1
- package/test/conformance/cases/aggregation/075_aggregation_edges.pl +12 -0
- package/test/conformance/cases/aggregation/098_aggregation_nested_templates.pl +11 -0
- package/test/conformance/cases/aggregation/aggregate_max_no_answers_fails.pl +2 -0
- package/test/conformance/cases/aggregation/aggregate_min_structured_key.pl +5 -0
- package/test/conformance/cases/aggregation/countall_zero.pl +2 -0
- package/test/conformance/cases/aggregation/extra_aggregate_max_iri_key.pl +4 -0
- package/test/conformance/cases/aggregation/extra_aggregate_min_tie_first.pl +5 -0
- package/test/conformance/cases/aggregation/extra_countall_with_filter.pl +5 -0
- package/test/conformance/cases/aggregation/extra_findall_repeated_template.pl +4 -0
- package/test/conformance/cases/aggregation/extra_sumall_float_template.pl +4 -0
- package/test/conformance/cases/aggregation/findall_empty_bag.pl +2 -0
- package/test/conformance/cases/aggregation/sumall_empty_zero.pl +2 -0
- package/test/conformance/cases/arithmetic/024_numeric_literal_readback.pl +6 -0
- package/test/conformance/cases/arithmetic/029_arithmetic_and_comparison.pl +11 -0
- package/test/conformance/cases/arithmetic/029_arithmetic_and_comparison.query +1 -1
- package/test/conformance/cases/arithmetic/039_numeric_functions.pl +9 -0
- package/test/conformance/cases/arithmetic/039_numeric_functions.query +1 -1
- package/test/conformance/cases/arithmetic/040_between_enumeration.pl +3 -0
- package/test/conformance/cases/arithmetic/040_between_enumeration.query +1 -1
- package/test/conformance/cases/arithmetic/041_smallest_divisor.pl +3 -0
- package/test/conformance/cases/arithmetic/041_smallest_divisor.query +1 -1
- package/test/conformance/cases/arithmetic/054_numeric_and_lexical_comparison.query +1 -1
- package/test/conformance/cases/arithmetic/061_date_difference.pl +4 -0
- package/test/conformance/cases/arithmetic/062_reusable_numeric_builtins.pl +10 -0
- package/test/conformance/cases/arithmetic/066_numeric_edges.pl +14 -0
- package/test/conformance/cases/arithmetic/079_big_integer_arithmetic.pl +8 -0
- package/test/conformance/cases/arithmetic/080_rounding_modes.pl +10 -0
- package/test/conformance/cases/arithmetic/081_zero_safe_numeric_functions.pl +9 -0
- package/test/conformance/cases/arithmetic/083_between_modes_and_empty_ranges.pl +8 -0
- package/test/conformance/cases/arithmetic/between_singleton.pl +2 -0
- package/test/conformance/cases/arithmetic/extra_acos_one.pl +2 -0
- package/test/conformance/cases/arithmetic/extra_asin_zero.pl +2 -0
- package/test/conformance/cases/arithmetic/extra_atan2_axis.pl +2 -0
- package/test/conformance/cases/arithmetic/extra_difference_leap_day.pl +2 -0
- package/test/conformance/cases/arithmetic/extra_difference_same_day.pl +2 -0
- package/test/conformance/cases/arithmetic/extra_div_float_exact.pl +2 -0
- package/test/conformance/cases/arithmetic/extra_div_integer_trunc.pl +2 -0
- package/test/conformance/cases/arithmetic/extra_division_by_zero_fails.pl +2 -0
- package/test/conformance/cases/arithmetic/extra_exp_zero.pl +2 -0
- package/test/conformance/cases/arithmetic/extra_log_one.pl +2 -0
- package/test/conformance/cases/arithmetic/extra_mod_negative_right.pl +2 -0
- package/test/conformance/cases/arithmetic/extra_pow_large_integer.pl +2 -0
- package/test/conformance/cases/arithmetic/float_add_and_div.pl +3 -0
- package/test/conformance/cases/arithmetic/min_max_mixed.pl +3 -0
- package/test/conformance/cases/arithmetic/mod_negative_left.pl +2 -0
- package/test/conformance/cases/arithmetic/neg_abs_integer.pl +4 -0
- package/test/conformance/cases/arithmetic/pow_negative_exponent_fails.pl +2 -0
- package/test/conformance/cases/arithmetic/pow_zero_exponent.pl +2 -0
- package/test/conformance/cases/arithmetic/rounding_negative_float.pl +5 -0
- package/test/conformance/cases/arithmetic/smallest_divisor_prime.pl +2 -0
- package/test/conformance/cases/arithmetic/sqrt_negative_fails.pl +2 -0
- package/test/conformance/cases/atoms/008_graphic_atoms.pl +6 -0
- package/test/conformance/cases/atoms/008_graphic_atoms.query +1 -1
- package/test/conformance/cases/atoms/016_arity_zero_atom.pl +4 -0
- package/test/conformance/cases/atoms/018_quoted_atom_readback.pl +6 -0
- package/test/conformance/cases/atoms/018_quoted_atom_readback.query +1 -1
- package/test/conformance/cases/atoms/103_angle_iri_atoms.pl +7 -0
- package/test/conformance/cases/atoms/angle_iri_percent_encoded.pl +2 -0
- package/test/conformance/cases/atoms/extra_iri_mailto_plus.pl +2 -0
- package/test/conformance/cases/atoms/extra_iri_uuid_scheme.pl +2 -0
- package/test/conformance/cases/atoms/graphic_angle_atom_stays_graphic.pl +4 -0
- package/test/conformance/cases/atoms/graphic_less_than_atom.pl +4 -0
- package/test/conformance/cases/atoms/iri_atoms_in_lists.pl +4 -0
- package/test/conformance/cases/atoms/iri_mailto_readback.pl +4 -0
- package/test/conformance/cases/atoms/iri_query_fragment_readback.pl +4 -0
- package/test/conformance/cases/atoms/iri_quoted_absolute_readback.pl +5 -0
- package/test/conformance/cases/atoms/iri_quoted_and_angle_unify.pl +3 -0
- package/test/conformance/cases/atoms/iri_urn_readback.pl +4 -0
- package/test/conformance/cases/atoms/quoted_urn_iri_readback.pl +4 -0
- package/test/conformance/cases/atoms/zero_arity_atom_roundtrip.pl +5 -0
- package/test/conformance/cases/builtins/037_matching_and_comparison.query +1 -1
- package/test/conformance/cases/builtins/076_composed_reusable_builtins.pl +8 -0
- package/test/conformance/cases/builtins/100_reusable_builtin_workflow.pl +10 -0
- package/test/conformance/cases/builtins/atom_string_iri_atom.pl +3 -0
- package/test/conformance/cases/builtins/eq_unifies_iri_atoms.pl +3 -0
- package/test/conformance/cases/builtins/extra_difference_end_before_start_fails.pl +2 -0
- package/test/conformance/cases/builtins/extra_difference_invalid_date_fails.pl +2 -0
- package/test/conformance/cases/builtins/extra_eq_binds_both_sides.pl +2 -0
- package/test/conformance/cases/builtins/extra_neq_different_iri_atoms.pl +2 -0
- package/test/conformance/cases/builtins/extra_neq_same_iri_fails.pl +2 -0
- package/test/conformance/cases/context/032_holds_parts.pl +4 -0
- package/test/conformance/cases/context/051_nested_holds_parts.pl +4 -0
- package/test/conformance/cases/context/052_holds_member.pl +3 -0
- package/test/conformance/cases/context/094_context_holds_enumeration.pl +7 -0
- package/test/conformance/cases/context/extra_holds_atom_parts.pl +2 -0
- package/test/conformance/cases/context/extra_holds_ignores_string_parts.pl +2 -0
- package/test/conformance/cases/context/extra_holds_list_parts.pl +2 -0
- package/test/conformance/cases/context/extra_holds_term_nested_order.pl +2 -0
- package/test/conformance/cases/context/holds_parts_from_formula.pl +2 -0
- package/test/conformance/cases/control/014_failure_filters_answers.pl +7 -0
- package/test/conformance/cases/control/014_failure_filters_answers.query +1 -1
- package/test/conformance/cases/control/043_once_user_predicate.pl +5 -0
- package/test/conformance/cases/control/043_once_user_predicate.query +1 -1
- package/test/conformance/cases/control/074_forall_edges.pl +10 -0
- package/test/conformance/cases/control/097_control_negation_once_forall.pl +13 -0
- package/test/conformance/cases/control/extra_forall_bound_check.pl +2 -0
- package/test/conformance/cases/control/extra_forall_counterexample_fails.pl +2 -0
- package/test/conformance/cases/control/extra_not_unbound_existing_goal_fails.pl +3 -0
- package/test/conformance/cases/control/extra_not_unbound_unknown_goal_succeeds.pl +2 -0
- package/test/conformance/cases/control/extra_once_preserves_binding.pl +2 -0
- package/test/conformance/cases/control/forall_detects_counterexample.pl +5 -0
- package/test/conformance/cases/control/forall_empty_generator_true.pl +2 -0
- package/test/conformance/cases/control/negation_with_bound_generator.pl +5 -0
- package/test/conformance/cases/control/once_keeps_first_answer.pl +4 -0
- package/test/conformance/cases/declarations/104_mode_determinism_declarations.pl +11 -0
- package/test/conformance/cases/declarations/memoize_is_ordinary_fact.pl +4 -0
- package/test/conformance/cases/declarations/mode_determinism_are_facts.pl +8 -0
- package/test/conformance/cases/declarations/table_is_also_fact.pl +4 -0
- package/test/conformance/cases/lists/005_list_deconstruction.pl +6 -0
- package/test/conformance/cases/lists/005_list_deconstruction.query +1 -1
- package/test/conformance/cases/lists/015_improper_list_unification.pl +6 -0
- package/test/conformance/cases/lists/015_improper_list_unification.query +1 -1
- package/test/conformance/cases/lists/020_nested_list_terms.pl +5 -0
- package/test/conformance/cases/lists/020_nested_list_terms.query +1 -1
- package/test/conformance/cases/lists/031_lists_aggregation_ordering.pl +10 -0
- package/test/conformance/cases/lists/031_lists_aggregation_ordering.query +1 -1
- package/test/conformance/cases/lists/035_list_relations.pl +5 -0
- package/test/conformance/cases/lists/035_list_relations.query +1 -1
- package/test/conformance/cases/lists/036_append_splits.pl +3 -0
- package/test/conformance/cases/lists/036_append_splits.query +1 -1
- package/test/conformance/cases/lists/045_sort_deduplicates_atoms.pl +3 -0
- package/test/conformance/cases/lists/045_sort_deduplicates_atoms.query +1 -1
- package/test/conformance/cases/lists/046_append_bound_prefix_suffix.pl +4 -0
- package/test/conformance/cases/lists/046_append_bound_prefix_suffix.query +1 -1
- package/test/conformance/cases/lists/047_nth0_index_generation.pl +3 -0
- package/test/conformance/cases/lists/047_nth0_index_generation.query +1 -1
- package/test/conformance/cases/lists/048_set_nth0_edges.pl +4 -0
- package/test/conformance/cases/lists/048_set_nth0_edges.query +1 -1
- package/test/conformance/cases/lists/049_select_duplicate_occurrences.pl +3 -0
- package/test/conformance/cases/lists/049_select_duplicate_occurrences.query +1 -1
- package/test/conformance/cases/lists/063_reusable_list_builtins.pl +11 -0
- package/test/conformance/cases/lists/067_list_edges.pl +10 -0
- package/test/conformance/cases/lists/068_list_generation_order.pl +7 -0
- package/test/conformance/cases/lists/069_list_summaries_and_sets.pl +9 -0
- package/test/conformance/cases/lists/084_append_and_select_composition.pl +7 -0
- package/test/conformance/cases/lists/085_nth_and_update_edges.pl +8 -0
- package/test/conformance/cases/lists/086_slicing_pipeline.pl +10 -0
- package/test/conformance/cases/lists/087_sort_reverse_length.pl +8 -0
- package/test/conformance/cases/lists/088_list_summaries_failures.pl +8 -0
- package/test/conformance/cases/lists/empty_list_term.pl +4 -0
- package/test/conformance/cases/lists/extra_append_all_splits_three.pl +2 -0
- package/test/conformance/cases/lists/extra_append_to_improper_tail.pl +2 -0
- package/test/conformance/cases/lists/extra_drop_all.pl +2 -0
- package/test/conformance/cases/lists/extra_head_and_rest_improper.pl +2 -0
- package/test/conformance/cases/lists/extra_last_singleton.pl +2 -0
- package/test/conformance/cases/lists/extra_length_improper_fails.pl +2 -0
- package/test/conformance/cases/lists/extra_list_to_set_stable_order.pl +2 -0
- package/test/conformance/cases/lists/extra_member_repeated_nested.pl +2 -0
- package/test/conformance/cases/lists/extra_nth0_duplicate_indexes.pl +2 -0
- package/test/conformance/cases/lists/extra_reverse_nested_terms.pl +2 -0
- package/test/conformance/cases/lists/extra_select_structured_duplicate.pl +2 -0
- package/test/conformance/cases/lists/extra_slice_end.pl +2 -0
- package/test/conformance/cases/lists/extra_sort_iri_atoms.pl +2 -0
- package/test/conformance/cases/lists/extra_take_all.pl +2 -0
- package/test/conformance/cases/lists/head_rest_last.pl +4 -0
- package/test/conformance/cases/lists/improper_list_readback.pl +4 -0
- package/test/conformance/cases/lists/length_empty_and_nested.pl +3 -0
- package/test/conformance/cases/lists/list_to_set_structural_duplicates.pl +2 -0
- package/test/conformance/cases/lists/list_with_iri_atoms.pl +4 -0
- package/test/conformance/cases/lists/min_list_empty_fails.pl +2 -0
- package/test/conformance/cases/lists/nth0_out_of_range_fails.pl +2 -0
- package/test/conformance/cases/lists/reverse_empty.pl +2 -0
- package/test/conformance/cases/lists/select_all_occurrences.pl +2 -0
- package/test/conformance/cases/lists/set_nth0_middle.pl +2 -0
- package/test/conformance/cases/lists/slice_middle.pl +2 -0
- package/test/conformance/cases/lists/slice_out_of_range_fails.pl +2 -0
- package/test/conformance/cases/lists/sort_structured_terms.pl +2 -0
- package/test/conformance/cases/lists/sum_list_empty_zero.pl +2 -0
- package/test/conformance/cases/lists/sum_min_max_list.pl +4 -0
- package/test/conformance/cases/lists/take_zero_and_drop_all.pl +3 -0
- package/test/conformance/cases/materialize/027_default_derived_output.pl +5 -0
- package/test/conformance/cases/materialize/028_materialize_focus.pl +5 -0
- package/test/conformance/cases/materialize/053_materialize_excludes_source_fact.pl +6 -0
- package/test/conformance/cases/materialize/099_materialize_multiple_arities.pl +8 -0
- package/test/conformance/cases/materialize/source_facts_suppressed.pl +5 -0
- package/test/conformance/cases/negation/033_negation_once_generators.pl +7 -0
- package/test/conformance/cases/negation/033_negation_once_generators.query +1 -1
- package/test/conformance/cases/negation/042_negation_filter.pl +7 -0
- package/test/conformance/cases/negation/042_negation_filter.query +1 -1
- package/test/conformance/cases/negation/050_not_member_filter.pl +6 -0
- package/test/conformance/cases/negation/050_not_member_filter.query +1 -1
- package/test/conformance/cases/negation/stratified_negation_answers.pl +6 -0
- package/test/conformance/cases/rules/001_fact_output.pl +4 -0
- package/test/conformance/cases/rules/002_rule_recursion.pl +7 -0
- package/test/conformance/cases/rules/002_rule_recursion.query +1 -1
- package/test/conformance/cases/rules/011_predicate_arity.pl +6 -0
- package/test/conformance/cases/rules/011_predicate_arity.query +1 -1
- package/test/conformance/cases/rules/013_multiple_clauses_order.pl +6 -0
- package/test/conformance/cases/rules/013_multiple_clauses_order.query +1 -1
- package/test/conformance/cases/rules/017_three_step_recursion.pl +8 -0
- package/test/conformance/cases/rules/017_three_step_recursion.query +1 -1
- package/test/conformance/cases/rules/022_rule_head_structure.pl +5 -0
- package/test/conformance/cases/rules/077_recursive_path_with_lists.pl +10 -0
- package/test/conformance/cases/rules/078_mutual_recursion_with_arithmetic.pl +7 -0
- package/test/conformance/cases/rules/extra_left_to_right_multiple_bindings.pl +5 -0
- package/test/conformance/cases/rules/extra_structured_head_rule.pl +3 -0
- package/test/conformance/cases/rules/left_to_right_body_binding.pl +4 -0
- package/test/conformance/cases/rules/transitive_rule_three_edges.pl +7 -0
- package/test/conformance/cases/strings/023_quoted_escapes_readback.pl +5 -0
- package/test/conformance/cases/strings/030_strings_and_atoms.pl +4 -0
- package/test/conformance/cases/strings/030_strings_and_atoms.query +1 -1
- package/test/conformance/cases/strings/055_string_matching_filters.pl +6 -0
- package/test/conformance/cases/strings/055_string_matching_filters.query +1 -1
- package/test/conformance/cases/strings/056_string_and_atom_concat.pl +3 -0
- package/test/conformance/cases/strings/056_string_and_atom_concat.query +1 -1
- package/test/conformance/cases/strings/064_reusable_string_builtins.pl +12 -0
- package/test/conformance/cases/strings/070_matches_named_captures.pl +13 -0
- package/test/conformance/cases/strings/071_string_edges.pl +10 -0
- package/test/conformance/cases/strings/072_string_conversions.pl +10 -0
- package/test/conformance/cases/strings/089_string_split_join_pipeline.pl +7 -0
- package/test/conformance/cases/strings/090_string_substring_replace_edges.pl +9 -0
- package/test/conformance/cases/strings/091_string_case_and_trim.pl +7 -0
- package/test/conformance/cases/strings/092_scalar_string_conversions.pl +9 -0
- package/test/conformance/cases/strings/093_regex_named_captures_context.pl +8 -0
- package/test/conformance/cases/strings/atom_string_from_string.pl +2 -0
- package/test/conformance/cases/strings/casefold_atoms.pl +3 -0
- package/test/conformance/cases/strings/extra_atom_string_number_input.pl +2 -0
- package/test/conformance/cases/strings/extra_join_empty_list.pl +2 -0
- package/test/conformance/cases/strings/extra_join_iri_and_atom.pl +2 -0
- package/test/conformance/cases/strings/extra_lowercase_iri_atom.pl +2 -0
- package/test/conformance/cases/strings/extra_named_regex_optional_missing.pl +2 -0
- package/test/conformance/cases/strings/extra_number_string_atom_input.pl +2 -0
- package/test/conformance/cases/strings/extra_replace_multiple.pl +2 -0
- package/test/conformance/cases/strings/extra_split_empty_separator.pl +2 -0
- package/test/conformance/cases/strings/extra_substring_last_char.pl +2 -0
- package/test/conformance/cases/strings/extra_term_string_iri_list.pl +2 -0
- package/test/conformance/cases/strings/extra_uppercase_mixed_string.pl +2 -0
- package/test/conformance/cases/strings/join_mixed_scalars.pl +2 -0
- package/test/conformance/cases/strings/named_regex_two_groups.pl +2 -0
- package/test/conformance/cases/strings/number_string_from_string.pl +2 -0
- package/test/conformance/cases/strings/number_string_rejects_non_numeric.pl +2 -0
- package/test/conformance/cases/strings/replace_empty_search_no_change.pl +2 -0
- package/test/conformance/cases/strings/split_without_separator_match.pl +2 -0
- package/test/conformance/cases/strings/substring_out_of_range_fails.pl +2 -0
- package/test/conformance/cases/strings/substring_zero_count.pl +2 -0
- package/test/conformance/cases/strings/term_string_nested_term.pl +2 -0
- package/test/conformance/cases/strings/trim_tabs_and_spaces.pl +3 -0
- package/test/conformance/cases/syntax/004_conjunction_and_parentheses.pl +5 -0
- package/test/conformance/cases/syntax/004_conjunction_and_parentheses.query +1 -1
- package/test/conformance/cases/syntax/006_comma_formula_data.pl +4 -0
- package/test/conformance/cases/syntax/006_comma_formula_data.query +1 -1
- package/test/conformance/cases/syntax/009_comments_and_whitespace.pl +5 -0
- package/test/conformance/cases/syntax/009_comments_and_whitespace.query +1 -1
- package/test/conformance/cases/syntax/019_parenthesized_three_conjuncts.pl +7 -0
- package/test/conformance/cases/syntax/019_parenthesized_three_conjuncts.query +1 -1
- package/test/conformance/cases/syntax/025_body_parentheses_with_formula_data.pl +5 -0
- package/test/conformance/cases/syntax/parenthesized_query_style_body.pl +5 -0
- package/test/conformance/cases/table/038_table_declaration.pl +8 -0
- package/test/conformance/cases/table/038_table_declaration.query +1 -1
- package/test/conformance/cases/table/102_table_declaration.pl +11 -0
- package/test/conformance/cases/table/extra_table_bound_cycle.pl +7 -0
- package/test/conformance/cases/table/extra_table_open_call_fallback.pl +5 -0
- package/test/conformance/cases/table/table_does_not_change_answers.pl +7 -0
- package/test/conformance/cases/table/tabled_left_recursion_path.pl +7 -0
- package/test/conformance/cases/terms/003_terms_and_readback.pl +16 -0
- package/test/conformance/cases/terms/003_terms_and_readback.query +1 -1
- package/test/conformance/cases/terms/065_reusable_term_control_builtins.pl +11 -0
- package/test/conformance/cases/terms/073_term_introspection_edges.pl +11 -0
- package/test/conformance/cases/terms/095_term_introspection_roundtrip.pl +8 -0
- package/test/conformance/cases/terms/096_functor_scalar_edges.pl +8 -0
- package/test/conformance/cases/terms/arg_first_and_second.pl +3 -0
- package/test/conformance/cases/terms/arg_zero_fails.pl +2 -0
- package/test/conformance/cases/terms/compound_name_arguments_atom_zero_args.pl +3 -0
- package/test/conformance/cases/terms/compound_name_arguments_bad_args_fail.pl +2 -0
- package/test/conformance/cases/terms/compound_name_arguments_builds_atom_from_empty_args.pl +3 -0
- package/test/conformance/cases/terms/compound_name_arguments_builds_compound.pl +2 -0
- package/test/conformance/cases/terms/compound_name_arguments_iri_name.pl +2 -0
- package/test/conformance/cases/terms/extra_arg_atom_fails.pl +2 -0
- package/test/conformance/cases/terms/extra_arg_first_last.pl +2 -0
- package/test/conformance/cases/terms/extra_arg_zero_fails.pl +2 -0
- package/test/conformance/cases/terms/extra_compound_name_arguments_bad_args_fails.pl +2 -0
- package/test/conformance/cases/terms/extra_compound_name_arguments_construct_atom_zero.pl +2 -0
- package/test/conformance/cases/terms/extra_compound_name_arguments_construct_iri.pl +2 -0
- package/test/conformance/cases/terms/extra_compound_name_arguments_decompose_list.pl +2 -0
- package/test/conformance/cases/terms/extra_functor_list_cons.pl +2 -0
- package/test/conformance/cases/terms/extra_functor_number_scalar.pl +2 -0
- package/test/conformance/cases/terms/extra_functor_string_scalar.pl +2 -0
- package/test/conformance/cases/terms/functor_atom_arity_zero.pl +3 -0
- package/test/conformance/cases/terms/functor_number_and_string.pl +3 -0
- package/test/conformance/cases/terms/herbrand_witness_one_input.pl +5 -0
- package/test/conformance/cases/terms/herbrand_witness_two_inputs.pl +5 -0
- package/test/conformance/cases/terms/term_string_readback_iri_list.pl +2 -0
- package/test/conformance/cases/unification/012_nested_compound_unification.pl +5 -0
- package/test/conformance/cases/unification/012_nested_compound_unification.query +1 -1
- package/test/conformance/cases/unification/021_repeated_variable_head.pl +7 -0
- package/test/conformance/cases/unification/034_equality_and_inequality.pl +6 -0
- package/test/conformance/cases/unification/034_equality_and_inequality.query +1 -1
- package/test/conformance/cases/unification/extra_eq_iri_and_quoted_atom.pl +2 -0
- package/test/conformance/cases/unification/extra_eq_list_tail_binding.pl +2 -0
- package/test/conformance/cases/unification/extra_eq_nested_repeated_fails.pl +2 -0
- package/test/conformance/cases/unification/extra_eq_nested_repeated_success.pl +2 -0
- package/test/conformance/cases/unification/extra_variable_clause_locality.pl +4 -0
- package/test/conformance/cases/unification/list_tail_binding.pl +2 -0
- package/test/conformance/cases/unification/nested_repeated_variable.pl +2 -0
- package/test/conformance/cases/variables/007_anonymous_variables.pl +5 -0
- package/test/conformance/cases/variables/007_anonymous_variables.query +1 -1
- package/test/conformance/cases/variables/010_variable_scope_and_reuse.pl +8 -0
- package/test/conformance/cases/variables/010_variable_scope_and_reuse.query +1 -1
- package/test/conformance/cases/variables/026_question_underscore_named_variable_reuse.pl +5 -0
- package/test/conformance/cases/variables/101_question_mark_variables.pl +7 -0
- package/test/conformance/cases/variables/anonymous_in_two_goals.pl +4 -0
- package/test/conformance/cases/variables/clause_local_variable_names.pl +5 -0
- package/test/conformance/cases/variables/extra_anonymous_not_reused.pl +2 -0
- package/test/conformance/cases/variables/extra_named_variable_reused.pl +2 -0
- package/test/conformance/cases/variables/extra_question_underscore_named_distinct.pl +2 -0
- package/test/conformance/cases/variables/extra_question_uppercase_named.pl +2 -0
- package/test/conformance/cases/variables/question_anonymous_not_reused.pl +6 -0
- package/test/conformance/cases/variables/question_underscore_named_reuse.pl +5 -0
- package/test/conformance/cases/variables/question_uppercase_variable.pl +4 -0
- package/test/conformance/cases/variables/question_variable_digits_and_underscore.pl +2 -0
- package/test/conformance/cases/variables/question_variable_uppercase_name.pl +2 -0
- package/test/conformance/cases/variables/variable_scope_per_clause.pl +6 -0
- package/test/conformance/errors/syntax/bad_question_variable.pl +1 -0
- package/test/conformance/errors/variables/bare_underscore_in_list_rejected.pl +1 -0
- package/test/conformance/errors/variables/bare_underscore_name_in_compound_rejected.pl +1 -0
- package/test/conformance/errors/variables/bare_underscore_rejected.pl +1 -0
- package/test/conformance/errors/variables/extra_bare_underscore_in_rule_head.pl +1 -0
- package/test/conformance/errors/variables/extra_question_dash_variable.pl +1 -0
- package/test/conformance/errors/variables/extra_uppercase_in_list.pl +1 -0
- package/test/conformance/errors/variables/question_dot_rejected.pl +1 -0
- package/test/conformance/errors/variables/underscore_named_rejected.pl +1 -0
- package/test/conformance/errors/variables/uppercase_in_body_rejected.pl +1 -0
- package/test/conformance/errors/variables/uppercase_variable_rejected.pl +1 -0
- package/test/conformance/expected/aggregation/extra_aggregate_max_iri_key.pl +1 -0
- package/test/conformance/expected/atoms/103_angle_iri_atoms.pl +3 -0
- package/test/conformance/expected/atoms/iri_atoms_in_lists.pl +1 -0
- package/test/conformance/expected/atoms/iri_mailto_readback.pl +1 -0
- package/test/conformance/expected/atoms/iri_query_fragment_readback.pl +1 -0
- package/test/conformance/expected/atoms/iri_quoted_absolute_readback.pl +2 -0
- package/test/conformance/expected/atoms/iri_urn_readback.pl +1 -0
- package/test/conformance/expected/atoms/quoted_urn_iri_readback.pl +1 -0
- package/test/conformance/expected/builtins/atom_string_iri_atom.pl +1 -0
- package/test/conformance/expected/builtins/extra_neq_same_iri_fails.pl +1 -0
- package/test/conformance/expected/lists/extra_reverse_nested_terms.pl +1 -0
- package/test/conformance/expected/lists/extra_sort_iri_atoms.pl +1 -0
- package/test/conformance/expected/lists/list_with_iri_atoms.pl +1 -0
- package/test/conformance/expected/strings/extra_join_iri_and_atom.pl +1 -0
- package/test/conformance/expected/strings/extra_lowercase_iri_atom.pl +1 -0
- package/test/conformance/expected/strings/extra_term_string_iri_list.pl +1 -0
- package/test/conformance/expected/strings/term_string_nested_term.pl +1 -0
- package/test/conformance/expected/terms/compound_name_arguments_iri_name.pl +1 -0
- package/test/conformance/expected/terms/extra_compound_name_arguments_construct_iri.pl +1 -0
- package/test/conformance/expected/terms/term_string_readback_iri_list.pl +1 -0
- package/test/conformance/expected/unification/extra_eq_nested_repeated_fails.pl +0 -0
- package/test/conformance/expected/unification/extra_neq_scalar_same_lexical_fails.pl +0 -0
- package/test/conformance/expected-errors/syntax/bad_question_variable.txt +1 -1
- package/test/conformance/expected-errors/syntax/uppercase_predicate_rejected.txt +1 -1
- package/test/conformance/expected-errors/variables/bare_underscore_in_list_rejected.txt +1 -1
- package/test/conformance/expected-errors/variables/bare_underscore_name_in_compound_rejected.txt +1 -1
- package/test/conformance/expected-errors/variables/bare_underscore_rejected.txt +1 -1
- package/test/conformance/expected-errors/variables/extra_bare_underscore_in_rule_head.txt +1 -1
- package/test/conformance/expected-errors/variables/extra_uppercase_in_list.txt +1 -1
- package/test/conformance/expected-errors/variables/underscore_named_rejected.txt +1 -1
- package/test/conformance/expected-errors/variables/uppercase_in_body_rejected.txt +1 -1
- package/test/conformance/expected-errors/variables/uppercase_variable_rejected.txt +1 -1
- package/test/conformance/expected-proofs/proofs/bindings_nested_term.pl +16 -0
- package/test/conformance/expected-proofs/proofs/builtin_numeric.pl +16 -0
- package/test/conformance/expected-proofs/proofs/extra_aggregate_min.pl +16 -0
- package/test/conformance/expected-proofs/proofs/extra_compound_name_arguments.pl +16 -0
- package/test/conformance/expected-proofs/proofs/extra_eq_builtin.pl +16 -0
- package/test/conformance/expected-proofs/proofs/extra_findall_builtin.pl +16 -0
- package/test/conformance/expected-proofs/proofs/extra_forall_builtin.pl +15 -0
- package/test/conformance/expected-proofs/proofs/extra_holds_parts.pl +32 -0
- package/test/conformance/expected-proofs/proofs/extra_iri_join.pl +16 -0
- package/test/conformance/expected-proofs/proofs/extra_nested_list_binding.pl +16 -0
- package/test/conformance/expected-proofs/proofs/extra_once_member.pl +22 -0
- package/test/conformance/expected-proofs/proofs/extra_recursive_path.pl +59 -0
- package/test/conformance/expected-proofs/proofs/extra_table_path_bound.pl +57 -0
- package/test/conformance/expected-proofs/proofs/herbrand_witness.pl +16 -0
- package/test/conformance/expected-proofs/proofs/iri_atom.pl +16 -0
- package/test/conformance/expected-proofs/proofs/list_builtin.pl +20 -0
- package/test/conformance/expected-proofs/proofs/once_child.pl +22 -0
- package/test/conformance/expected-proofs/proofs/rule_fact.pl +16 -0
- package/test/conformance/expected-proofs/proofs/table_recursive.pl +59 -0
- package/test/conformance/proofs/proofs/bindings_nested_term.pl +4 -0
- package/test/conformance/proofs/proofs/builtin_numeric.pl +3 -0
- package/test/conformance/proofs/proofs/extra_aggregate_min.pl +4 -0
- package/test/conformance/proofs/proofs/extra_compound_name_arguments.pl +2 -0
- package/test/conformance/proofs/proofs/extra_eq_builtin.pl +2 -0
- package/test/conformance/proofs/proofs/extra_findall_builtin.pl +4 -0
- package/test/conformance/proofs/proofs/extra_forall_builtin.pl +2 -0
- package/test/conformance/proofs/proofs/extra_holds_parts.pl +2 -0
- package/test/conformance/proofs/proofs/extra_iri_join.pl +2 -0
- package/test/conformance/proofs/proofs/extra_nested_list_binding.pl +2 -0
- package/test/conformance/proofs/proofs/extra_once_member.pl +2 -0
- package/test/conformance/proofs/proofs/extra_recursive_path.pl +5 -0
- package/test/conformance/proofs/proofs/extra_table_path_bound.pl +7 -0
- package/test/conformance/proofs/proofs/herbrand_witness.pl +3 -0
- package/test/conformance/proofs/proofs/iri_atom.pl +4 -0
- package/test/conformance/proofs/proofs/list_builtin.pl +3 -0
- package/test/conformance/proofs/proofs/once_child.pl +5 -0
- package/test/conformance/proofs/proofs/rule_fact.pl +4 -0
- package/test/conformance/proofs/proofs/table_recursive.pl +7 -0
- package/test/conformance/warnings/negation/extra_stratified_negation_with_table_quiet.pl +6 -0
- package/test/conformance/warnings/negation/extra_unstratified_indirect_self_with_fact.pl +5 -0
- package/test/conformance/warnings/negation/extra_unstratified_positive_negative_loop.pl +5 -0
- package/test/conformance/warnings/negation/no_negation_quiet.pl +3 -0
- package/test/conformance/warnings/negation/stratified_negative_unknown_after_positive_quiet.pl +3 -0
- package/test/conformance/warnings/negation/stratified_two_level_quiet.pl +5 -0
- package/test/conformance/warnings/negation/unstratified_three_step.pl +6 -0
- package/test/conformance/warnings/negation/unstratified_with_iri_predicates.pl +4 -0
- package/test/run-conformance-report.mjs +5 -5
- package/test/run-conformance.mjs +9 -9
- package/test/run-examples.mjs +51 -51
- package/test/run-regression.mjs +95 -95
- package/examples/abstract-interpretation.eye +0 -50
- package/examples/access-control-policy.eye +0 -52
- package/examples/ackermann.eye +0 -47
- package/examples/age.eye +0 -26
- package/examples/aliases-and-namespaces.eye +0 -20
- package/examples/alignment-demo.eye +0 -44
- package/examples/allen-interval-calculus.eye +0 -64
- package/examples/ancestor.eye +0 -22
- package/examples/animal.eye +0 -21
- package/examples/annotation.eye +0 -34
- package/examples/auroracare.eye +0 -309
- package/examples/backward.eye +0 -11
- package/examples/basic-monadic.eye +0 -10032
- package/examples/bayes-diagnosis.eye +0 -108
- package/examples/bayes-therapy.eye +0 -189
- package/examples/beam-deflection.eye +0 -48
- package/examples/binomial-vandermonde.eye +0 -49
- package/examples/blocks-world-planning.eye +0 -77
- package/examples/bmi.eye +0 -232
- package/examples/braking-safety-worlds.eye +0 -69
- package/examples/buck-converter-design.eye +0 -83
- package/examples/cache-performance.eye +0 -56
- package/examples/canary-release.eye +0 -51
- package/examples/cat-koko.eye +0 -24
- package/examples/catalan-convolution.eye +0 -37
- package/examples/cdcl-sat-solver.eye +0 -65
- package/examples/chart-parser.eye +0 -65
- package/examples/clinical-trial-screening.eye +0 -97
- package/examples/collatz-1000.eye +0 -45
- package/examples/combinatorics-findall-sort.eye +0 -38
- package/examples/competitive-enzyme-kinetics.eye +0 -78
- package/examples/complex.eye +0 -133
- package/examples/composition-of-injective-functions-is-injective.eye +0 -50
- package/examples/context-association.eye +0 -53
- package/examples/context-schema-audit.eye +0 -46
- package/examples/continued-fraction-sqrt2.eye +0 -36
- package/examples/control-system.eye +0 -76
- package/examples/critical-path-schedule.eye +0 -82
- package/examples/cyclic-path.eye +0 -18
- package/examples/d3-group.eye +0 -99
- package/examples/dairy-energy-balance.eye +0 -66
- package/examples/data-negotiation.eye +0 -38
- package/examples/deep-taxonomy-10.eye +0 -115
- package/examples/deep-taxonomy-100.eye +0 -385
- package/examples/deep-taxonomy-1000.eye +0 -3085
- package/examples/deep-taxonomy-10000.eye +0 -30094
- package/examples/deep-taxonomy-100000.eye +0 -300184
- package/examples/delfour.eye +0 -281
- package/examples/deontic-logic.eye +0 -52
- package/examples/derived-backward-rule.eye +0 -30
- package/examples/derived-rule.eye +0 -27
- package/examples/diamond-property.eye +0 -38
- package/examples/dijkstra-findall-sort.eye +0 -43
- package/examples/dijkstra-risk-path.eye +0 -87
- package/examples/dijkstra.eye +0 -50
- package/examples/dining-philosophers.eye +0 -147
- package/examples/dog.eye +0 -25
- package/examples/dpv-odrl-purpose-mapping.eye +0 -48
- package/examples/drone-corridor-planner.eye +0 -48
- package/examples/easter-computus.eye +0 -88
- package/examples/electrical-rc-filter.eye +0 -37
- package/examples/epidemic-policy.eye +0 -66
- package/examples/equality-saturation.eye +0 -84
- package/examples/equivalence-classes-overlap-implies-same-class.eye +0 -27
- package/examples/eulerian-path.eye +0 -87
- package/examples/ev-range-worlds.eye +0 -87
- package/examples/existential-rule.eye +0 -14
- package/examples/exoplanet-validation-worlds.eye +0 -94
- package/examples/expression-eval.eye +0 -45
- package/examples/family-cousins.eye +0 -67
- package/examples/fastpow.eye +0 -61
- package/examples/fft8-numeric.eye +0 -85
- package/examples/fibonacci.eye +0 -60
- package/examples/field-nitrogen-balance.eye +0 -73
- package/examples/flandor.eye +0 -296
- package/examples/floating-point.eye +0 -28
- package/examples/four-color-map.eye +0 -133
- package/examples/fundamental-theorem-arithmetic.eye +0 -119
- package/examples/gd-step-certified.eye +0 -162
- package/examples/gdpr-compliance.eye +0 -69
- package/examples/good-cobbler.eye +0 -16
- package/examples/gps.eye +0 -146
- package/examples/graph-reachability.eye +0 -33
- package/examples/graph.eye +0 -35
- package/examples/gray-code-counter.eye +0 -47
- package/examples/greatest-lower-bound-uniqueness.eye +0 -30
- package/examples/group-inverse-uniqueness.eye +0 -36
- package/examples/hamiltonian-path.eye +0 -51
- package/examples/hamming-code.eye +0 -109
- package/examples/hanoi.eye +0 -19
- package/examples/heat-loss.eye +0 -56
- package/examples/herbrand-witnesses.eye +0 -31
- package/examples/heron-theorem.eye +0 -42
- package/examples/ideal-gas-law.eye +0 -39
- package/examples/illegitimate-reasoning.eye +0 -88
- package/examples/integer-partitions.eye +0 -35
- package/examples/intuitionistic-logic-kripke.eye +0 -69
- package/examples/job-shop-scheduling.eye +0 -48
- package/examples/knapsack-optimization.eye +0 -46
- package/examples/knowledge-engineering-alignment-flow.eye +0 -46
- package/examples/knuth-bendix-completion.eye +0 -55
- package/examples/language.eye +0 -25
- package/examples/law-of-cosines.eye +0 -37
- package/examples/least-squares-regression.eye +0 -85
- package/examples/linear-logic-resources.eye +0 -51
- package/examples/list-collection.eye +0 -35
- package/examples/lldm.eye +0 -80
- package/examples/manufacturing-quality-control.eye +0 -73
- package/examples/map-four-color-search.eye +0 -65
- package/examples/markov-logic-network.eye +0 -87
- package/examples/matrix-chain-order.eye +0 -79
- package/examples/matrix-noncommutativity.eye +0 -43
- package/examples/microgrid-dispatch.eye +0 -89
- package/examples/missionaries-cannibals.eye +0 -53
- package/examples/modal-logic-kripke.eye +0 -45
- package/examples/modular-exponentiation.eye +0 -35
- package/examples/monkey-bananas.eye +0 -45
- package/examples/n-queens-8.eye +0 -35
- package/examples/network-sla.eye +0 -48
- package/examples/newton-raphson.eye +0 -48
- package/examples/nixon-diamond.eye +0 -37
- package/examples/observability-log-correlation.eye +0 -40
- package/examples/odrl-dpv-fpv-trust-flow.eye +0 -51
- package/examples/odrl-dpv-healthcare-risk-ranked.eye +0 -270
- package/examples/odrl-dpv-risk-ranked.eye +0 -320
- package/examples/orbital-transfer-design.eye +0 -116
- package/examples/output/deep-taxonomy-10.eye +0 -16
- package/examples/output/deep-taxonomy-100.eye +0 -16
- package/examples/output/deep-taxonomy-1000.eye +0 -16
- package/examples/output/deep-taxonomy-10000.eye +0 -16
- package/examples/output/deep-taxonomy-100000.eye +0 -16
- package/examples/output/language.eye +0 -6
- package/examples/output/web-names.eye +0 -3
- package/examples/partial-evaluator.eye +0 -74
- package/examples/path-discovery.eye +0 -45013
- package/examples/peano-arithmetic.eye +0 -33
- package/examples/peano-calculus.eye +0 -40
- package/examples/peasant.eye +0 -29
- package/examples/pell-equation.eye +0 -34
- package/examples/pendulum-period.eye +0 -50
- package/examples/pointer-analysis.eye +0 -50
- package/examples/polynomial.eye +0 -124
- package/examples/prime-range.eye +0 -45
- package/examples/proof/access-control-policy.eye +0 -158
- package/examples/proof/age.eye +0 -71
- package/examples/proof/aliases-and-namespaces.eye +0 -78
- package/examples/proof/ancestor.eye +0 -140
- package/examples/proof/animal.eye +0 -68
- package/examples/proof/annotation.eye +0 -80
- package/examples/proof/backward.eye +0 -22
- package/examples/proof/bayes-diagnosis.eye +0 -208
- package/examples/proof/beam-deflection.eye +0 -227
- package/examples/proof/cache-performance.eye +0 -310
- package/examples/proof/canary-release.eye +0 -172
- package/examples/proof/cat-koko.eye +0 -86
- package/examples/proof/chart-parser.eye +0 -474
- package/examples/proof/clinical-trial-screening.eye +0 -389
- package/examples/proof/composition-of-injective-functions-is-injective.eye +0 -258
- package/examples/proof/context-association.eye +0 -78
- package/examples/proof/data-negotiation.eye +0 -76
- package/examples/proof/deontic-logic.eye +0 -109
- package/examples/proof/derived-backward-rule.eye +0 -74
- package/examples/proof/derived-rule.eye +0 -43
- package/examples/proof/diamond-property.eye +0 -307
- package/examples/proof/dog.eye +0 -31
- package/examples/proof/dpv-odrl-purpose-mapping.eye +0 -348
- package/examples/proof/electrical-rc-filter.eye +0 -105
- package/examples/proof/epidemic-policy.eye +0 -774
- package/examples/proof/equivalence-classes-overlap-implies-same-class.eye +0 -1098
- package/examples/proof/existential-rule.eye +0 -32
- package/examples/proof/expression-eval.eye +0 -105
- package/examples/proof/floating-point.eye +0 -160
- package/examples/proof/gdpr-compliance.eye +0 -199
- package/examples/proof/good-cobbler.eye +0 -16
- package/examples/proof/graph-reachability.eye +0 -151
- package/examples/proof/greatest-lower-bound-uniqueness.eye +0 -150
- package/examples/proof/group-inverse-uniqueness.eye +0 -84
- package/examples/proof/hanoi.eye +0 -185
- package/examples/proof/heat-loss.eye +0 -228
- package/examples/proof/ideal-gas-law.eye +0 -151
- package/examples/proof/intuitionistic-logic-kripke.eye +0 -133
- package/examples/proof/linear-logic-resources.eye +0 -205
- package/examples/proof/list-collection.eye +0 -52
- package/examples/proof/modal-logic-kripke.eye +0 -125
- package/examples/proof/nixon-diamond.eye +0 -181
- package/examples/proof/proof-contrapositive.eye +0 -78
- package/examples/proof/reusable-builtins.eye +0 -124
- package/examples/proof/security-incident-correlation.eye +0 -270
- package/examples/proof/socket-age.eye +0 -32
- package/examples/proof/socket-family.eye +0 -59
- package/examples/proof/socrates.eye +0 -38
- package/examples/proof/term-tools.eye +0 -95
- package/examples/proof/witch.eye +0 -216
- package/examples/proof-contrapositive.eye +0 -27
- package/examples/quadratic-formula.eye +0 -56
- package/examples/radioactive-decay.eye +0 -58
- package/examples/register-allocation.eye +0 -77
- package/examples/reusable-builtins.eye +0 -36
- package/examples/riemann-hypothesis.eye +0 -110
- package/examples/route-planning.eye +0 -33
- package/examples/sat-solver-dpll.eye +0 -88
- package/examples/security-incident-correlation.eye +0 -69
- package/examples/send-more-money.eye +0 -71
- package/examples/service-impact.eye +0 -41
- package/examples/shoelace-polygon-area.eye +0 -22
- package/examples/sieve.eye +0 -20
- package/examples/skolem-functions.eye +0 -52
- package/examples/socket-age.eye +0 -39
- package/examples/socket-family.eye +0 -28
- package/examples/socrates.eye +0 -19
- package/examples/stable-marriage.eye +0 -92
- package/examples/statistics-summary.eye +0 -56
- package/examples/stirling-bell-numbers.eye +0 -69
- package/examples/sudoku-4x4.eye +0 -54
- package/examples/superdense-coding.eye +0 -84
- package/examples/symbolic-derivative.eye +0 -39
- package/examples/term-tools.eye +0 -32
- package/examples/totient-summatory.eye +0 -33
- package/examples/trust-flow-provenance-threshold.eye +0 -47
- package/examples/truth-maintenance-system.eye +0 -62
- package/examples/turing.eye +0 -69
- package/examples/type-inference.eye +0 -58
- package/examples/vector-similarity.eye +0 -60
- package/examples/vulnerability-impact.eye +0 -69
- package/examples/web-names.eye +0 -39
- package/examples/weighted-interval-scheduling.eye +0 -81
- package/examples/witch.eye +0 -38
- package/examples/wolf-goat-cabbage.eye +0 -56
- package/examples/workplace-compliance.eye +0 -41
- package/examples/zebra.eye +0 -45
- package/test/conformance/cases/aggregation/044_findall_user_goal.eye +0 -6
- package/test/conformance/cases/aggregation/057_countall_empty_and_nonempty.eye +0 -4
- package/test/conformance/cases/aggregation/058_sumall_numeric_template.eye +0 -5
- package/test/conformance/cases/aggregation/059_aggregate_min_template.eye +0 -5
- package/test/conformance/cases/aggregation/060_aggregate_max_compound_key.eye +0 -5
- package/test/conformance/cases/aggregation/075_aggregation_edges.eye +0 -12
- package/test/conformance/cases/aggregation/098_aggregation_nested_templates.eye +0 -11
- package/test/conformance/cases/aggregation/aggregate_max_no_answers_fails.eye +0 -2
- package/test/conformance/cases/aggregation/aggregate_min_structured_key.eye +0 -5
- package/test/conformance/cases/aggregation/countall_zero.eye +0 -2
- package/test/conformance/cases/aggregation/extra_aggregate_max_iri_key.eye +0 -4
- package/test/conformance/cases/aggregation/extra_aggregate_min_tie_first.eye +0 -5
- package/test/conformance/cases/aggregation/extra_countall_with_filter.eye +0 -5
- package/test/conformance/cases/aggregation/extra_findall_repeated_template.eye +0 -4
- package/test/conformance/cases/aggregation/extra_sumall_float_template.eye +0 -4
- package/test/conformance/cases/aggregation/findall_empty_bag.eye +0 -2
- package/test/conformance/cases/aggregation/sumall_empty_zero.eye +0 -2
- package/test/conformance/cases/arithmetic/024_numeric_literal_readback.eye +0 -6
- package/test/conformance/cases/arithmetic/029_arithmetic_and_comparison.eye +0 -11
- package/test/conformance/cases/arithmetic/039_numeric_functions.eye +0 -9
- package/test/conformance/cases/arithmetic/040_between_enumeration.eye +0 -3
- package/test/conformance/cases/arithmetic/041_smallest_divisor.eye +0 -3
- package/test/conformance/cases/arithmetic/061_date_difference.eye +0 -4
- package/test/conformance/cases/arithmetic/062_reusable_numeric_builtins.eye +0 -10
- package/test/conformance/cases/arithmetic/066_numeric_edges.eye +0 -14
- package/test/conformance/cases/arithmetic/079_big_integer_arithmetic.eye +0 -8
- package/test/conformance/cases/arithmetic/080_rounding_modes.eye +0 -10
- package/test/conformance/cases/arithmetic/081_zero_safe_numeric_functions.eye +0 -9
- package/test/conformance/cases/arithmetic/083_between_modes_and_empty_ranges.eye +0 -8
- package/test/conformance/cases/arithmetic/between_singleton.eye +0 -2
- package/test/conformance/cases/arithmetic/extra_acos_one.eye +0 -2
- package/test/conformance/cases/arithmetic/extra_asin_zero.eye +0 -2
- package/test/conformance/cases/arithmetic/extra_atan2_axis.eye +0 -2
- package/test/conformance/cases/arithmetic/extra_difference_leap_day.eye +0 -2
- package/test/conformance/cases/arithmetic/extra_difference_same_day.eye +0 -2
- package/test/conformance/cases/arithmetic/extra_div_float_exact.eye +0 -2
- package/test/conformance/cases/arithmetic/extra_div_integer_trunc.eye +0 -2
- package/test/conformance/cases/arithmetic/extra_division_by_zero_fails.eye +0 -2
- package/test/conformance/cases/arithmetic/extra_exp_zero.eye +0 -2
- package/test/conformance/cases/arithmetic/extra_log_one.eye +0 -2
- package/test/conformance/cases/arithmetic/extra_mod_negative_right.eye +0 -2
- package/test/conformance/cases/arithmetic/extra_pow_large_integer.eye +0 -2
- package/test/conformance/cases/arithmetic/float_add_and_div.eye +0 -3
- package/test/conformance/cases/arithmetic/min_max_mixed.eye +0 -3
- package/test/conformance/cases/arithmetic/mod_negative_left.eye +0 -2
- package/test/conformance/cases/arithmetic/neg_abs_integer.eye +0 -4
- package/test/conformance/cases/arithmetic/pow_negative_exponent_fails.eye +0 -2
- package/test/conformance/cases/arithmetic/pow_zero_exponent.eye +0 -2
- package/test/conformance/cases/arithmetic/rounding_negative_float.eye +0 -5
- package/test/conformance/cases/arithmetic/smallest_divisor_prime.eye +0 -2
- package/test/conformance/cases/arithmetic/sqrt_negative_fails.eye +0 -2
- package/test/conformance/cases/atoms/008_graphic_atoms.eye +0 -6
- package/test/conformance/cases/atoms/016_arity_zero_atom.eye +0 -4
- package/test/conformance/cases/atoms/018_quoted_atom_readback.eye +0 -6
- package/test/conformance/cases/atoms/103_angle_iri_atoms.eye +0 -7
- package/test/conformance/cases/atoms/angle_iri_percent_encoded.eye +0 -2
- package/test/conformance/cases/atoms/extra_iri_mailto_plus.eye +0 -2
- package/test/conformance/cases/atoms/extra_iri_uuid_scheme.eye +0 -2
- package/test/conformance/cases/atoms/graphic_angle_atom_stays_graphic.eye +0 -4
- package/test/conformance/cases/atoms/graphic_less_than_atom.eye +0 -4
- package/test/conformance/cases/atoms/iri_atoms_in_lists.eye +0 -4
- package/test/conformance/cases/atoms/iri_mailto_readback.eye +0 -4
- package/test/conformance/cases/atoms/iri_query_fragment_readback.eye +0 -4
- package/test/conformance/cases/atoms/iri_quoted_absolute_readback.eye +0 -5
- package/test/conformance/cases/atoms/iri_quoted_and_angle_unify.eye +0 -3
- package/test/conformance/cases/atoms/iri_urn_readback.eye +0 -4
- package/test/conformance/cases/atoms/quoted_urn_iri_readback.eye +0 -4
- package/test/conformance/cases/atoms/zero_arity_atom_roundtrip.eye +0 -5
- package/test/conformance/cases/builtins/076_composed_reusable_builtins.eye +0 -8
- package/test/conformance/cases/builtins/100_reusable_builtin_workflow.eye +0 -10
- package/test/conformance/cases/builtins/atom_string_iri_atom.eye +0 -3
- package/test/conformance/cases/builtins/eq_unifies_iri_atoms.eye +0 -3
- package/test/conformance/cases/builtins/extra_difference_end_before_start_fails.eye +0 -2
- package/test/conformance/cases/builtins/extra_difference_invalid_date_fails.eye +0 -2
- package/test/conformance/cases/builtins/extra_eq_binds_both_sides.eye +0 -2
- package/test/conformance/cases/builtins/extra_neq_different_iri_atoms.eye +0 -2
- package/test/conformance/cases/builtins/extra_neq_same_iri_fails.eye +0 -2
- package/test/conformance/cases/context/032_holds_parts.eye +0 -4
- package/test/conformance/cases/context/051_nested_holds_parts.eye +0 -4
- package/test/conformance/cases/context/052_holds_member.eye +0 -3
- package/test/conformance/cases/context/094_context_holds_enumeration.eye +0 -7
- package/test/conformance/cases/context/extra_holds_atom_parts.eye +0 -2
- package/test/conformance/cases/context/extra_holds_ignores_string_parts.eye +0 -2
- package/test/conformance/cases/context/extra_holds_list_parts.eye +0 -2
- package/test/conformance/cases/context/extra_holds_term_nested_order.eye +0 -2
- package/test/conformance/cases/context/holds_parts_from_formula.eye +0 -2
- package/test/conformance/cases/control/014_failure_filters_answers.eye +0 -7
- package/test/conformance/cases/control/043_once_user_predicate.eye +0 -5
- package/test/conformance/cases/control/074_forall_edges.eye +0 -10
- package/test/conformance/cases/control/097_control_negation_once_forall.eye +0 -13
- package/test/conformance/cases/control/extra_forall_bound_check.eye +0 -2
- package/test/conformance/cases/control/extra_forall_counterexample_fails.eye +0 -2
- package/test/conformance/cases/control/extra_not_unbound_existing_goal_fails.eye +0 -3
- package/test/conformance/cases/control/extra_not_unbound_unknown_goal_succeeds.eye +0 -2
- package/test/conformance/cases/control/extra_once_preserves_binding.eye +0 -2
- package/test/conformance/cases/control/forall_detects_counterexample.eye +0 -5
- package/test/conformance/cases/control/forall_empty_generator_true.eye +0 -2
- package/test/conformance/cases/control/negation_with_bound_generator.eye +0 -5
- package/test/conformance/cases/control/once_keeps_first_answer.eye +0 -4
- package/test/conformance/cases/declarations/104_mode_determinism_declarations.eye +0 -11
- package/test/conformance/cases/declarations/memoize_is_ordinary_fact.eye +0 -4
- package/test/conformance/cases/declarations/mode_determinism_are_facts.eye +0 -8
- package/test/conformance/cases/declarations/table_is_also_fact.eye +0 -4
- package/test/conformance/cases/lists/005_list_deconstruction.eye +0 -6
- package/test/conformance/cases/lists/015_improper_list_unification.eye +0 -6
- package/test/conformance/cases/lists/020_nested_list_terms.eye +0 -5
- package/test/conformance/cases/lists/031_lists_aggregation_ordering.eye +0 -10
- package/test/conformance/cases/lists/035_list_relations.eye +0 -5
- package/test/conformance/cases/lists/036_append_splits.eye +0 -3
- package/test/conformance/cases/lists/045_sort_deduplicates_atoms.eye +0 -3
- package/test/conformance/cases/lists/046_append_bound_prefix_suffix.eye +0 -4
- package/test/conformance/cases/lists/047_nth0_index_generation.eye +0 -3
- package/test/conformance/cases/lists/048_set_nth0_edges.eye +0 -4
- package/test/conformance/cases/lists/049_select_duplicate_occurrences.eye +0 -3
- package/test/conformance/cases/lists/063_reusable_list_builtins.eye +0 -11
- package/test/conformance/cases/lists/067_list_edges.eye +0 -10
- package/test/conformance/cases/lists/068_list_generation_order.eye +0 -7
- package/test/conformance/cases/lists/069_list_summaries_and_sets.eye +0 -9
- package/test/conformance/cases/lists/084_append_and_select_composition.eye +0 -7
- package/test/conformance/cases/lists/085_nth_and_update_edges.eye +0 -8
- package/test/conformance/cases/lists/086_slicing_pipeline.eye +0 -10
- package/test/conformance/cases/lists/087_sort_reverse_length.eye +0 -8
- package/test/conformance/cases/lists/088_list_summaries_failures.eye +0 -8
- package/test/conformance/cases/lists/empty_list_term.eye +0 -4
- package/test/conformance/cases/lists/extra_append_all_splits_three.eye +0 -2
- package/test/conformance/cases/lists/extra_append_to_improper_tail.eye +0 -2
- package/test/conformance/cases/lists/extra_drop_all.eye +0 -2
- package/test/conformance/cases/lists/extra_head_and_rest_improper.eye +0 -2
- package/test/conformance/cases/lists/extra_last_singleton.eye +0 -2
- package/test/conformance/cases/lists/extra_length_improper_fails.eye +0 -2
- package/test/conformance/cases/lists/extra_list_to_set_stable_order.eye +0 -2
- package/test/conformance/cases/lists/extra_member_repeated_nested.eye +0 -2
- package/test/conformance/cases/lists/extra_nth0_duplicate_indexes.eye +0 -2
- package/test/conformance/cases/lists/extra_reverse_nested_terms.eye +0 -2
- package/test/conformance/cases/lists/extra_select_structured_duplicate.eye +0 -2
- package/test/conformance/cases/lists/extra_slice_end.eye +0 -2
- package/test/conformance/cases/lists/extra_sort_iri_atoms.eye +0 -2
- package/test/conformance/cases/lists/extra_take_all.eye +0 -2
- package/test/conformance/cases/lists/head_rest_last.eye +0 -4
- package/test/conformance/cases/lists/improper_list_readback.eye +0 -4
- package/test/conformance/cases/lists/length_empty_and_nested.eye +0 -3
- package/test/conformance/cases/lists/list_to_set_structural_duplicates.eye +0 -2
- package/test/conformance/cases/lists/list_with_iri_atoms.eye +0 -4
- package/test/conformance/cases/lists/min_list_empty_fails.eye +0 -2
- package/test/conformance/cases/lists/nth0_out_of_range_fails.eye +0 -2
- package/test/conformance/cases/lists/reverse_empty.eye +0 -2
- package/test/conformance/cases/lists/select_all_occurrences.eye +0 -2
- package/test/conformance/cases/lists/set_nth0_middle.eye +0 -2
- package/test/conformance/cases/lists/slice_middle.eye +0 -2
- package/test/conformance/cases/lists/slice_out_of_range_fails.eye +0 -2
- package/test/conformance/cases/lists/sort_structured_terms.eye +0 -2
- package/test/conformance/cases/lists/sum_list_empty_zero.eye +0 -2
- package/test/conformance/cases/lists/sum_min_max_list.eye +0 -4
- package/test/conformance/cases/lists/take_zero_and_drop_all.eye +0 -3
- package/test/conformance/cases/materialize/027_default_derived_output.eye +0 -5
- package/test/conformance/cases/materialize/028_materialize_focus.eye +0 -5
- package/test/conformance/cases/materialize/053_materialize_excludes_source_fact.eye +0 -6
- package/test/conformance/cases/materialize/099_materialize_multiple_arities.eye +0 -8
- package/test/conformance/cases/materialize/source_facts_suppressed.eye +0 -5
- package/test/conformance/cases/negation/033_negation_once_generators.eye +0 -7
- package/test/conformance/cases/negation/042_negation_filter.eye +0 -7
- package/test/conformance/cases/negation/050_not_member_filter.eye +0 -6
- package/test/conformance/cases/negation/stratified_negation_answers.eye +0 -6
- package/test/conformance/cases/rules/001_fact_output.eye +0 -4
- package/test/conformance/cases/rules/002_rule_recursion.eye +0 -7
- package/test/conformance/cases/rules/011_predicate_arity.eye +0 -6
- package/test/conformance/cases/rules/013_multiple_clauses_order.eye +0 -6
- package/test/conformance/cases/rules/017_three_step_recursion.eye +0 -8
- package/test/conformance/cases/rules/022_rule_head_structure.eye +0 -5
- package/test/conformance/cases/rules/077_recursive_path_with_lists.eye +0 -10
- package/test/conformance/cases/rules/078_mutual_recursion_with_arithmetic.eye +0 -7
- package/test/conformance/cases/rules/extra_left_to_right_multiple_bindings.eye +0 -5
- package/test/conformance/cases/rules/extra_structured_head_rule.eye +0 -3
- package/test/conformance/cases/rules/left_to_right_body_binding.eye +0 -4
- package/test/conformance/cases/rules/transitive_rule_three_edges.eye +0 -7
- package/test/conformance/cases/strings/023_quoted_escapes_readback.eye +0 -5
- package/test/conformance/cases/strings/030_strings_and_atoms.eye +0 -4
- package/test/conformance/cases/strings/055_string_matching_filters.eye +0 -6
- package/test/conformance/cases/strings/056_string_and_atom_concat.eye +0 -3
- package/test/conformance/cases/strings/064_reusable_string_builtins.eye +0 -12
- package/test/conformance/cases/strings/070_matches_named_captures.eye +0 -13
- package/test/conformance/cases/strings/071_string_edges.eye +0 -10
- package/test/conformance/cases/strings/072_string_conversions.eye +0 -10
- package/test/conformance/cases/strings/089_string_split_join_pipeline.eye +0 -7
- package/test/conformance/cases/strings/090_string_substring_replace_edges.eye +0 -9
- package/test/conformance/cases/strings/091_string_case_and_trim.eye +0 -7
- package/test/conformance/cases/strings/092_scalar_string_conversions.eye +0 -9
- package/test/conformance/cases/strings/093_regex_named_captures_context.eye +0 -8
- package/test/conformance/cases/strings/atom_string_from_string.eye +0 -2
- package/test/conformance/cases/strings/casefold_atoms.eye +0 -3
- package/test/conformance/cases/strings/extra_atom_string_number_input.eye +0 -2
- package/test/conformance/cases/strings/extra_join_empty_list.eye +0 -2
- package/test/conformance/cases/strings/extra_join_iri_and_atom.eye +0 -2
- package/test/conformance/cases/strings/extra_lowercase_iri_atom.eye +0 -2
- package/test/conformance/cases/strings/extra_named_regex_optional_missing.eye +0 -2
- package/test/conformance/cases/strings/extra_number_string_atom_input.eye +0 -2
- package/test/conformance/cases/strings/extra_replace_multiple.eye +0 -2
- package/test/conformance/cases/strings/extra_split_empty_separator.eye +0 -2
- package/test/conformance/cases/strings/extra_substring_last_char.eye +0 -2
- package/test/conformance/cases/strings/extra_term_string_iri_list.eye +0 -2
- package/test/conformance/cases/strings/extra_uppercase_mixed_string.eye +0 -2
- package/test/conformance/cases/strings/join_mixed_scalars.eye +0 -2
- package/test/conformance/cases/strings/named_regex_two_groups.eye +0 -2
- package/test/conformance/cases/strings/number_string_from_string.eye +0 -2
- package/test/conformance/cases/strings/number_string_rejects_non_numeric.eye +0 -2
- package/test/conformance/cases/strings/replace_empty_search_no_change.eye +0 -2
- package/test/conformance/cases/strings/split_without_separator_match.eye +0 -2
- package/test/conformance/cases/strings/substring_out_of_range_fails.eye +0 -2
- package/test/conformance/cases/strings/substring_zero_count.eye +0 -2
- package/test/conformance/cases/strings/term_string_nested_term.eye +0 -2
- package/test/conformance/cases/strings/trim_tabs_and_spaces.eye +0 -3
- package/test/conformance/cases/syntax/004_conjunction_and_parentheses.eye +0 -5
- package/test/conformance/cases/syntax/006_comma_formula_data.eye +0 -4
- package/test/conformance/cases/syntax/009_comments_and_whitespace.eye +0 -5
- package/test/conformance/cases/syntax/019_parenthesized_three_conjuncts.eye +0 -7
- package/test/conformance/cases/syntax/025_body_parentheses_with_formula_data.eye +0 -5
- package/test/conformance/cases/syntax/parenthesized_query_style_body.eye +0 -5
- package/test/conformance/cases/table/038_table_declaration.eye +0 -8
- package/test/conformance/cases/table/102_table_declaration.eye +0 -11
- package/test/conformance/cases/table/extra_table_bound_cycle.eye +0 -7
- package/test/conformance/cases/table/extra_table_open_call_fallback.eye +0 -5
- package/test/conformance/cases/table/table_does_not_change_answers.eye +0 -7
- package/test/conformance/cases/table/tabled_left_recursion_path.eye +0 -7
- package/test/conformance/cases/terms/003_terms_and_readback.eye +0 -16
- package/test/conformance/cases/terms/065_reusable_term_control_builtins.eye +0 -11
- package/test/conformance/cases/terms/073_term_introspection_edges.eye +0 -11
- package/test/conformance/cases/terms/095_term_introspection_roundtrip.eye +0 -8
- package/test/conformance/cases/terms/096_functor_scalar_edges.eye +0 -8
- package/test/conformance/cases/terms/arg_first_and_second.eye +0 -3
- package/test/conformance/cases/terms/arg_zero_fails.eye +0 -2
- package/test/conformance/cases/terms/compound_name_arguments_atom_zero_args.eye +0 -3
- package/test/conformance/cases/terms/compound_name_arguments_bad_args_fail.eye +0 -2
- package/test/conformance/cases/terms/compound_name_arguments_builds_atom_from_empty_args.eye +0 -3
- package/test/conformance/cases/terms/compound_name_arguments_builds_compound.eye +0 -2
- package/test/conformance/cases/terms/compound_name_arguments_iri_name.eye +0 -2
- package/test/conformance/cases/terms/extra_arg_atom_fails.eye +0 -2
- package/test/conformance/cases/terms/extra_arg_first_last.eye +0 -2
- package/test/conformance/cases/terms/extra_arg_zero_fails.eye +0 -2
- package/test/conformance/cases/terms/extra_compound_name_arguments_bad_args_fails.eye +0 -2
- package/test/conformance/cases/terms/extra_compound_name_arguments_construct_atom_zero.eye +0 -2
- package/test/conformance/cases/terms/extra_compound_name_arguments_construct_iri.eye +0 -2
- package/test/conformance/cases/terms/extra_compound_name_arguments_decompose_list.eye +0 -2
- package/test/conformance/cases/terms/extra_functor_list_cons.eye +0 -2
- package/test/conformance/cases/terms/extra_functor_number_scalar.eye +0 -2
- package/test/conformance/cases/terms/extra_functor_string_scalar.eye +0 -2
- package/test/conformance/cases/terms/functor_atom_arity_zero.eye +0 -3
- package/test/conformance/cases/terms/functor_number_and_string.eye +0 -3
- package/test/conformance/cases/terms/herbrand_witness_one_input.eye +0 -5
- package/test/conformance/cases/terms/herbrand_witness_two_inputs.eye +0 -5
- package/test/conformance/cases/terms/term_string_readback_iri_list.eye +0 -2
- package/test/conformance/cases/unification/012_nested_compound_unification.eye +0 -5
- package/test/conformance/cases/unification/021_repeated_variable_head.eye +0 -7
- package/test/conformance/cases/unification/034_equality_and_inequality.eye +0 -6
- package/test/conformance/cases/unification/extra_eq_iri_and_quoted_atom.eye +0 -2
- package/test/conformance/cases/unification/extra_eq_list_tail_binding.eye +0 -2
- package/test/conformance/cases/unification/extra_eq_nested_repeated_fails.eye +0 -2
- package/test/conformance/cases/unification/extra_eq_nested_repeated_success.eye +0 -2
- package/test/conformance/cases/unification/extra_variable_clause_locality.eye +0 -4
- package/test/conformance/cases/unification/list_tail_binding.eye +0 -2
- package/test/conformance/cases/unification/nested_repeated_variable.eye +0 -2
- package/test/conformance/cases/variables/007_anonymous_variables.eye +0 -5
- package/test/conformance/cases/variables/010_variable_scope_and_reuse.eye +0 -8
- package/test/conformance/cases/variables/026_question_underscore_named_variable_reuse.eye +0 -5
- package/test/conformance/cases/variables/101_question_mark_variables.eye +0 -7
- package/test/conformance/cases/variables/anonymous_in_two_goals.eye +0 -4
- package/test/conformance/cases/variables/clause_local_variable_names.eye +0 -5
- package/test/conformance/cases/variables/extra_anonymous_not_reused.eye +0 -2
- package/test/conformance/cases/variables/extra_named_variable_reused.eye +0 -2
- package/test/conformance/cases/variables/extra_question_underscore_named_distinct.eye +0 -2
- package/test/conformance/cases/variables/extra_question_uppercase_named.eye +0 -2
- package/test/conformance/cases/variables/question_anonymous_not_reused.eye +0 -6
- package/test/conformance/cases/variables/question_underscore_named_reuse.eye +0 -5
- package/test/conformance/cases/variables/question_uppercase_variable.eye +0 -4
- package/test/conformance/cases/variables/question_variable_digits_and_underscore.eye +0 -2
- package/test/conformance/cases/variables/question_variable_uppercase_name.eye +0 -2
- package/test/conformance/cases/variables/variable_scope_per_clause.eye +0 -6
- package/test/conformance/errors/syntax/bad_question_variable.eye +0 -1
- package/test/conformance/errors/variables/bare_underscore_in_list_rejected.eye +0 -1
- package/test/conformance/errors/variables/bare_underscore_name_in_compound_rejected.eye +0 -1
- package/test/conformance/errors/variables/bare_underscore_rejected.eye +0 -1
- package/test/conformance/errors/variables/extra_bare_underscore_in_rule_head.eye +0 -1
- package/test/conformance/errors/variables/extra_question_dash_variable.eye +0 -1
- package/test/conformance/errors/variables/extra_uppercase_in_list.eye +0 -1
- package/test/conformance/errors/variables/question_dot_rejected.eye +0 -1
- package/test/conformance/errors/variables/underscore_named_rejected.eye +0 -1
- package/test/conformance/errors/variables/uppercase_in_body_rejected.eye +0 -1
- package/test/conformance/errors/variables/uppercase_variable_rejected.eye +0 -1
- package/test/conformance/expected/aggregation/extra_aggregate_max_iri_key.eye +0 -1
- package/test/conformance/expected/atoms/103_angle_iri_atoms.eye +0 -3
- package/test/conformance/expected/atoms/iri_atoms_in_lists.eye +0 -1
- package/test/conformance/expected/atoms/iri_mailto_readback.eye +0 -1
- package/test/conformance/expected/atoms/iri_query_fragment_readback.eye +0 -1
- package/test/conformance/expected/atoms/iri_quoted_absolute_readback.eye +0 -2
- package/test/conformance/expected/atoms/iri_urn_readback.eye +0 -1
- package/test/conformance/expected/atoms/quoted_urn_iri_readback.eye +0 -1
- package/test/conformance/expected/builtins/atom_string_iri_atom.eye +0 -1
- package/test/conformance/expected/lists/extra_reverse_nested_terms.eye +0 -1
- package/test/conformance/expected/lists/extra_sort_iri_atoms.eye +0 -1
- package/test/conformance/expected/lists/list_with_iri_atoms.eye +0 -1
- package/test/conformance/expected/strings/extra_join_iri_and_atom.eye +0 -1
- package/test/conformance/expected/strings/extra_lowercase_iri_atom.eye +0 -1
- package/test/conformance/expected/strings/extra_term_string_iri_list.eye +0 -1
- package/test/conformance/expected/strings/term_string_nested_term.eye +0 -1
- package/test/conformance/expected/terms/compound_name_arguments_iri_name.eye +0 -1
- package/test/conformance/expected/terms/extra_compound_name_arguments_construct_iri.eye +0 -1
- package/test/conformance/expected/terms/term_string_readback_iri_list.eye +0 -1
- package/test/conformance/expected/unification/extra_eq_iri_and_quoted_atom.eye +0 -1
- package/test/conformance/expected/variables/question_variable_digits_and_underscore.eye +0 -1
- package/test/conformance/expected/variables/question_variable_uppercase_name.eye +0 -1
- package/test/conformance/expected-proofs/proofs/bindings_nested_term.eye +0 -16
- package/test/conformance/expected-proofs/proofs/builtin_numeric.eye +0 -16
- package/test/conformance/expected-proofs/proofs/extra_aggregate_min.eye +0 -16
- package/test/conformance/expected-proofs/proofs/extra_compound_name_arguments.eye +0 -16
- package/test/conformance/expected-proofs/proofs/extra_eq_builtin.eye +0 -16
- package/test/conformance/expected-proofs/proofs/extra_findall_builtin.eye +0 -16
- package/test/conformance/expected-proofs/proofs/extra_forall_builtin.eye +0 -15
- package/test/conformance/expected-proofs/proofs/extra_holds_parts.eye +0 -32
- package/test/conformance/expected-proofs/proofs/extra_iri_join.eye +0 -16
- package/test/conformance/expected-proofs/proofs/extra_nested_list_binding.eye +0 -16
- package/test/conformance/expected-proofs/proofs/extra_once_member.eye +0 -22
- package/test/conformance/expected-proofs/proofs/extra_recursive_path.eye +0 -59
- package/test/conformance/expected-proofs/proofs/extra_table_path_bound.eye +0 -57
- package/test/conformance/expected-proofs/proofs/herbrand_witness.eye +0 -16
- package/test/conformance/expected-proofs/proofs/iri_atom.eye +0 -16
- package/test/conformance/expected-proofs/proofs/list_builtin.eye +0 -20
- package/test/conformance/expected-proofs/proofs/once_child.eye +0 -22
- package/test/conformance/expected-proofs/proofs/rule_fact.eye +0 -16
- package/test/conformance/expected-proofs/proofs/table_recursive.eye +0 -59
- package/test/conformance/proofs/proofs/bindings_nested_term.eye +0 -4
- package/test/conformance/proofs/proofs/builtin_numeric.eye +0 -3
- package/test/conformance/proofs/proofs/extra_aggregate_min.eye +0 -4
- package/test/conformance/proofs/proofs/extra_compound_name_arguments.eye +0 -2
- package/test/conformance/proofs/proofs/extra_eq_builtin.eye +0 -2
- package/test/conformance/proofs/proofs/extra_findall_builtin.eye +0 -4
- package/test/conformance/proofs/proofs/extra_forall_builtin.eye +0 -2
- package/test/conformance/proofs/proofs/extra_holds_parts.eye +0 -2
- package/test/conformance/proofs/proofs/extra_iri_join.eye +0 -2
- package/test/conformance/proofs/proofs/extra_nested_list_binding.eye +0 -2
- package/test/conformance/proofs/proofs/extra_once_member.eye +0 -2
- package/test/conformance/proofs/proofs/extra_recursive_path.eye +0 -5
- package/test/conformance/proofs/proofs/extra_table_path_bound.eye +0 -7
- package/test/conformance/proofs/proofs/herbrand_witness.eye +0 -3
- package/test/conformance/proofs/proofs/iri_atom.eye +0 -4
- package/test/conformance/proofs/proofs/list_builtin.eye +0 -3
- package/test/conformance/proofs/proofs/once_child.eye +0 -5
- package/test/conformance/proofs/proofs/rule_fact.eye +0 -4
- package/test/conformance/proofs/proofs/table_recursive.eye +0 -7
- package/test/conformance/warnings/negation/extra_stratified_negation_with_table_quiet.eye +0 -6
- package/test/conformance/warnings/negation/extra_unstratified_indirect_self_with_fact.eye +0 -5
- package/test/conformance/warnings/negation/extra_unstratified_positive_negative_loop.eye +0 -5
- package/test/conformance/warnings/negation/no_negation_quiet.eye +0 -3
- package/test/conformance/warnings/negation/stratified_negative_unknown_after_positive_quiet.eye +0 -3
- package/test/conformance/warnings/negation/stratified_two_level_quiet.eye +0 -5
- package/test/conformance/warnings/negation/unstratified_three_step.eye +0 -6
- package/test/conformance/warnings/negation/unstratified_with_iri_predicates.eye +0 -4
- /package/examples/output/{abstract-interpretation.eye → abstract-interpretation.pl} +0 -0
- /package/examples/output/{access-control-policy.eye → access-control-policy.pl} +0 -0
- /package/examples/output/{ackermann.eye → ackermann.pl} +0 -0
- /package/examples/output/{age.eye → age.pl} +0 -0
- /package/examples/output/{aliases-and-namespaces.eye → aliases-and-namespaces.pl} +0 -0
- /package/examples/output/{alignment-demo.eye → alignment-demo.pl} +0 -0
- /package/examples/output/{allen-interval-calculus.eye → allen-interval-calculus.pl} +0 -0
- /package/examples/output/{ancestor.eye → ancestor.pl} +0 -0
- /package/examples/output/{animal.eye → animal.pl} +0 -0
- /package/examples/output/{annotation.eye → annotation.pl} +0 -0
- /package/examples/output/{auroracare.eye → auroracare.pl} +0 -0
- /package/examples/output/{backward.eye → backward.pl} +0 -0
- /package/examples/output/{basic-monadic.eye → basic-monadic.pl} +0 -0
- /package/examples/output/{bayes-diagnosis.eye → bayes-diagnosis.pl} +0 -0
- /package/examples/output/{bayes-therapy.eye → bayes-therapy.pl} +0 -0
- /package/examples/output/{beam-deflection.eye → beam-deflection.pl} +0 -0
- /package/examples/output/{binomial-vandermonde.eye → binomial-vandermonde.pl} +0 -0
- /package/examples/output/{blocks-world-planning.eye → blocks-world-planning.pl} +0 -0
- /package/examples/output/{bmi.eye → bmi.pl} +0 -0
- /package/examples/output/{braking-safety-worlds.eye → braking-safety-worlds.pl} +0 -0
- /package/examples/output/{buck-converter-design.eye → buck-converter-design.pl} +0 -0
- /package/examples/output/{cache-performance.eye → cache-performance.pl} +0 -0
- /package/examples/output/{canary-release.eye → canary-release.pl} +0 -0
- /package/examples/output/{cat-koko.eye → cat-koko.pl} +0 -0
- /package/examples/output/{catalan-convolution.eye → catalan-convolution.pl} +0 -0
- /package/examples/output/{cdcl-sat-solver.eye → cdcl-sat-solver.pl} +0 -0
- /package/examples/output/{chart-parser.eye → chart-parser.pl} +0 -0
- /package/examples/output/{clinical-trial-screening.eye → clinical-trial-screening.pl} +0 -0
- /package/examples/output/{collatz-1000.eye → collatz-1000.pl} +0 -0
- /package/examples/output/{combinatorics-findall-sort.eye → combinatorics-findall-sort.pl} +0 -0
- /package/examples/output/{competitive-enzyme-kinetics.eye → competitive-enzyme-kinetics.pl} +0 -0
- /package/examples/output/{complex.eye → complex.pl} +0 -0
- /package/examples/output/{composition-of-injective-functions-is-injective.eye → composition-of-injective-functions-is-injective.pl} +0 -0
- /package/examples/output/{context-association.eye → context-association.pl} +0 -0
- /package/examples/output/{context-schema-audit.eye → context-schema-audit.pl} +0 -0
- /package/examples/output/{continued-fraction-sqrt2.eye → continued-fraction-sqrt2.pl} +0 -0
- /package/examples/output/{control-system.eye → control-system.pl} +0 -0
- /package/examples/output/{critical-path-schedule.eye → critical-path-schedule.pl} +0 -0
- /package/examples/output/{cyclic-path.eye → cyclic-path.pl} +0 -0
- /package/examples/output/{d3-group.eye → d3-group.pl} +0 -0
- /package/examples/output/{dairy-energy-balance.eye → dairy-energy-balance.pl} +0 -0
- /package/examples/output/{data-negotiation.eye → data-negotiation.pl} +0 -0
- /package/examples/output/{delfour.eye → delfour.pl} +0 -0
- /package/examples/output/{deontic-logic.eye → deontic-logic.pl} +0 -0
- /package/examples/output/{derived-backward-rule.eye → derived-backward-rule.pl} +0 -0
- /package/examples/output/{derived-rule.eye → derived-rule.pl} +0 -0
- /package/examples/output/{diamond-property.eye → diamond-property.pl} +0 -0
- /package/examples/output/{dijkstra-findall-sort.eye → dijkstra-findall-sort.pl} +0 -0
- /package/examples/output/{dijkstra-risk-path.eye → dijkstra-risk-path.pl} +0 -0
- /package/examples/output/{dijkstra.eye → dijkstra.pl} +0 -0
- /package/examples/output/{dining-philosophers.eye → dining-philosophers.pl} +0 -0
- /package/examples/output/{dog.eye → dog.pl} +0 -0
- /package/examples/output/{dpv-odrl-purpose-mapping.eye → dpv-odrl-purpose-mapping.pl} +0 -0
- /package/examples/output/{drone-corridor-planner.eye → drone-corridor-planner.pl} +0 -0
- /package/examples/output/{easter-computus.eye → easter-computus.pl} +0 -0
- /package/examples/output/{electrical-rc-filter.eye → electrical-rc-filter.pl} +0 -0
- /package/examples/output/{epidemic-policy.eye → epidemic-policy.pl} +0 -0
- /package/examples/output/{equality-saturation.eye → equality-saturation.pl} +0 -0
- /package/examples/output/{equivalence-classes-overlap-implies-same-class.eye → equivalence-classes-overlap-implies-same-class.pl} +0 -0
- /package/examples/output/{eulerian-path.eye → eulerian-path.pl} +0 -0
- /package/examples/output/{ev-range-worlds.eye → ev-range-worlds.pl} +0 -0
- /package/examples/output/{existential-rule.eye → existential-rule.pl} +0 -0
- /package/examples/output/{exoplanet-validation-worlds.eye → exoplanet-validation-worlds.pl} +0 -0
- /package/examples/output/{expression-eval.eye → expression-eval.pl} +0 -0
- /package/examples/output/{family-cousins.eye → family-cousins.pl} +0 -0
- /package/examples/output/{fastpow.eye → fastpow.pl} +0 -0
- /package/examples/output/{fft8-numeric.eye → fft8-numeric.pl} +0 -0
- /package/examples/output/{fibonacci.eye → fibonacci.pl} +0 -0
- /package/examples/output/{field-nitrogen-balance.eye → field-nitrogen-balance.pl} +0 -0
- /package/examples/output/{flandor.eye → flandor.pl} +0 -0
- /package/examples/output/{floating-point.eye → floating-point.pl} +0 -0
- /package/examples/output/{four-color-map.eye → four-color-map.pl} +0 -0
- /package/examples/output/{fundamental-theorem-arithmetic.eye → fundamental-theorem-arithmetic.pl} +0 -0
- /package/examples/output/{gd-step-certified.eye → gd-step-certified.pl} +0 -0
- /package/examples/output/{gdpr-compliance.eye → gdpr-compliance.pl} +0 -0
- /package/examples/output/{good-cobbler.eye → good-cobbler.pl} +0 -0
- /package/examples/output/{gps.eye → gps.pl} +0 -0
- /package/examples/output/{graph-reachability.eye → graph-reachability.pl} +0 -0
- /package/examples/output/{graph.eye → graph.pl} +0 -0
- /package/examples/output/{gray-code-counter.eye → gray-code-counter.pl} +0 -0
- /package/examples/output/{greatest-lower-bound-uniqueness.eye → greatest-lower-bound-uniqueness.pl} +0 -0
- /package/examples/output/{group-inverse-uniqueness.eye → group-inverse-uniqueness.pl} +0 -0
- /package/examples/output/{hamiltonian-path.eye → hamiltonian-path.pl} +0 -0
- /package/examples/output/{hamming-code.eye → hamming-code.pl} +0 -0
- /package/examples/output/{hanoi.eye → hanoi.pl} +0 -0
- /package/examples/output/{heat-loss.eye → heat-loss.pl} +0 -0
- /package/examples/output/{herbrand-witnesses.eye → herbrand-witnesses.pl} +0 -0
- /package/examples/output/{heron-theorem.eye → heron-theorem.pl} +0 -0
- /package/examples/output/{ideal-gas-law.eye → ideal-gas-law.pl} +0 -0
- /package/examples/output/{illegitimate-reasoning.eye → illegitimate-reasoning.pl} +0 -0
- /package/examples/output/{integer-partitions.eye → integer-partitions.pl} +0 -0
- /package/examples/output/{intuitionistic-logic-kripke.eye → intuitionistic-logic-kripke.pl} +0 -0
- /package/examples/output/{job-shop-scheduling.eye → job-shop-scheduling.pl} +0 -0
- /package/examples/output/{knapsack-optimization.eye → knapsack-optimization.pl} +0 -0
- /package/examples/output/{knowledge-engineering-alignment-flow.eye → knowledge-engineering-alignment-flow.pl} +0 -0
- /package/examples/output/{knuth-bendix-completion.eye → knuth-bendix-completion.pl} +0 -0
- /package/examples/output/{law-of-cosines.eye → law-of-cosines.pl} +0 -0
- /package/examples/output/{least-squares-regression.eye → least-squares-regression.pl} +0 -0
- /package/examples/output/{linear-logic-resources.eye → linear-logic-resources.pl} +0 -0
- /package/examples/output/{list-collection.eye → list-collection.pl} +0 -0
- /package/examples/output/{lldm.eye → lldm.pl} +0 -0
- /package/examples/output/{manufacturing-quality-control.eye → manufacturing-quality-control.pl} +0 -0
- /package/examples/output/{map-four-color-search.eye → map-four-color-search.pl} +0 -0
- /package/examples/output/{markov-logic-network.eye → markov-logic-network.pl} +0 -0
- /package/examples/output/{matrix-chain-order.eye → matrix-chain-order.pl} +0 -0
- /package/examples/output/{matrix-noncommutativity.eye → matrix-noncommutativity.pl} +0 -0
- /package/examples/output/{microgrid-dispatch.eye → microgrid-dispatch.pl} +0 -0
- /package/examples/output/{missionaries-cannibals.eye → missionaries-cannibals.pl} +0 -0
- /package/examples/output/{modal-logic-kripke.eye → modal-logic-kripke.pl} +0 -0
- /package/examples/output/{modular-exponentiation.eye → modular-exponentiation.pl} +0 -0
- /package/examples/output/{monkey-bananas.eye → monkey-bananas.pl} +0 -0
- /package/examples/output/{n-queens-8.eye → n-queens-8.pl} +0 -0
- /package/examples/output/{network-sla.eye → network-sla.pl} +0 -0
- /package/examples/output/{newton-raphson.eye → newton-raphson.pl} +0 -0
- /package/examples/output/{nixon-diamond.eye → nixon-diamond.pl} +0 -0
- /package/examples/output/{observability-log-correlation.eye → observability-log-correlation.pl} +0 -0
- /package/examples/output/{odrl-dpv-fpv-trust-flow.eye → odrl-dpv-fpv-trust-flow.pl} +0 -0
- /package/examples/output/{odrl-dpv-healthcare-risk-ranked.eye → odrl-dpv-healthcare-risk-ranked.pl} +0 -0
- /package/examples/output/{odrl-dpv-risk-ranked.eye → odrl-dpv-risk-ranked.pl} +0 -0
- /package/examples/output/{orbital-transfer-design.eye → orbital-transfer-design.pl} +0 -0
- /package/examples/output/{partial-evaluator.eye → partial-evaluator.pl} +0 -0
- /package/examples/output/{path-discovery.eye → path-discovery.pl} +0 -0
- /package/examples/output/{peano-arithmetic.eye → peano-arithmetic.pl} +0 -0
- /package/examples/output/{peano-calculus.eye → peano-calculus.pl} +0 -0
- /package/examples/output/{peasant.eye → peasant.pl} +0 -0
- /package/examples/output/{pell-equation.eye → pell-equation.pl} +0 -0
- /package/examples/output/{pendulum-period.eye → pendulum-period.pl} +0 -0
- /package/examples/output/{pointer-analysis.eye → pointer-analysis.pl} +0 -0
- /package/examples/output/{polynomial.eye → polynomial.pl} +0 -0
- /package/examples/output/{prime-range.eye → prime-range.pl} +0 -0
- /package/examples/output/{proof-contrapositive.eye → proof-contrapositive.pl} +0 -0
- /package/examples/output/{quadratic-formula.eye → quadratic-formula.pl} +0 -0
- /package/examples/output/{radioactive-decay.eye → radioactive-decay.pl} +0 -0
- /package/examples/output/{register-allocation.eye → register-allocation.pl} +0 -0
- /package/examples/output/{reusable-builtins.eye → reusable-builtins.pl} +0 -0
- /package/examples/output/{riemann-hypothesis.eye → riemann-hypothesis.pl} +0 -0
- /package/examples/output/{route-planning.eye → route-planning.pl} +0 -0
- /package/examples/output/{sat-solver-dpll.eye → sat-solver-dpll.pl} +0 -0
- /package/examples/output/{security-incident-correlation.eye → security-incident-correlation.pl} +0 -0
- /package/examples/output/{send-more-money.eye → send-more-money.pl} +0 -0
- /package/examples/output/{service-impact.eye → service-impact.pl} +0 -0
- /package/examples/output/{shoelace-polygon-area.eye → shoelace-polygon-area.pl} +0 -0
- /package/examples/output/{sieve.eye → sieve.pl} +0 -0
- /package/examples/output/{skolem-functions.eye → skolem-functions.pl} +0 -0
- /package/examples/output/{socket-age.eye → socket-age.pl} +0 -0
- /package/examples/output/{socket-family.eye → socket-family.pl} +0 -0
- /package/examples/output/{socrates.eye → socrates.pl} +0 -0
- /package/examples/output/{stable-marriage.eye → stable-marriage.pl} +0 -0
- /package/examples/output/{statistics-summary.eye → statistics-summary.pl} +0 -0
- /package/examples/output/{stirling-bell-numbers.eye → stirling-bell-numbers.pl} +0 -0
- /package/examples/output/{sudoku-4x4.eye → sudoku-4x4.pl} +0 -0
- /package/examples/output/{superdense-coding.eye → superdense-coding.pl} +0 -0
- /package/examples/output/{symbolic-derivative.eye → symbolic-derivative.pl} +0 -0
- /package/examples/output/{term-tools.eye → term-tools.pl} +0 -0
- /package/examples/output/{totient-summatory.eye → totient-summatory.pl} +0 -0
- /package/examples/output/{trust-flow-provenance-threshold.eye → trust-flow-provenance-threshold.pl} +0 -0
- /package/examples/output/{truth-maintenance-system.eye → truth-maintenance-system.pl} +0 -0
- /package/examples/output/{turing.eye → turing.pl} +0 -0
- /package/examples/output/{type-inference.eye → type-inference.pl} +0 -0
- /package/examples/output/{vector-similarity.eye → vector-similarity.pl} +0 -0
- /package/examples/output/{vulnerability-impact.eye → vulnerability-impact.pl} +0 -0
- /package/examples/output/{weighted-interval-scheduling.eye → weighted-interval-scheduling.pl} +0 -0
- /package/examples/output/{witch.eye → witch.pl} +0 -0
- /package/examples/output/{wolf-goat-cabbage.eye → wolf-goat-cabbage.pl} +0 -0
- /package/examples/output/{workplace-compliance.eye → workplace-compliance.pl} +0 -0
- /package/examples/output/{zebra.eye → zebra.pl} +0 -0
- /package/test/conformance/cases/arithmetic/{054_numeric_and_lexical_comparison.eye → 054_numeric_and_lexical_comparison.pl} +0 -0
- /package/test/conformance/cases/arithmetic/{082_comparison_semantics.eye → 082_comparison_semantics.pl} +0 -0
- /package/test/conformance/cases/arithmetic/{between_bound_value.eye → between_bound_value.pl} +0 -0
- /package/test/conformance/cases/arithmetic/{duration_comparison.eye → duration_comparison.pl} +0 -0
- /package/test/conformance/cases/arithmetic/{extra_ge_equal_duration.eye → extra_ge_equal_duration.pl} +0 -0
- /package/test/conformance/cases/arithmetic/{extra_le_equal_string.eye → extra_le_equal_string.pl} +0 -0
- /package/test/conformance/cases/atoms/{extra_graphic_backslash_atom.eye → extra_graphic_backslash_atom.pl} +0 -0
- /package/test/conformance/cases/atoms/{extra_quoted_atom_with_quote_readback.eye → extra_quoted_atom_with_quote_readback.pl} +0 -0
- /package/test/conformance/cases/atoms/{graphic_atom_predicate.eye → graphic_atom_predicate.pl} +0 -0
- /package/test/conformance/cases/atoms/{iri_as_predicate_name_quoted.eye → iri_as_predicate_name_quoted.pl} +0 -0
- /package/test/conformance/cases/atoms/{quoted_relative_iri_not_angle.eye → quoted_relative_iri_not_angle.pl} +0 -0
- /package/test/conformance/cases/builtins/{037_matching_and_comparison.eye → 037_matching_and_comparison.pl} +0 -0
- /package/test/conformance/cases/context/{holds_compound_formula.eye → holds_compound_formula.pl} +0 -0
- /package/test/conformance/cases/context/{holds_fails_when_missing.eye → holds_fails_when_missing.pl} +0 -0
- /package/test/conformance/cases/control/{double_negation_ground_goal.eye → double_negation_ground_goal.pl} +0 -0
- /package/test/conformance/cases/control/{extra_once_empty_fails.eye → extra_once_empty_fails.pl} +0 -0
- /package/test/conformance/cases/declarations/{det_semidet_do_not_emit_without_materialize.eye → det_semidet_do_not_emit_without_materialize.pl} +0 -0
- /package/test/conformance/cases/declarations/{mode_ignored_when_arity_mismatch.eye → mode_ignored_when_arity_mismatch.pl} +0 -0
- /package/test/conformance/cases/lists/{extra_not_member_compound_fails.eye → extra_not_member_compound_fails.pl} +0 -0
- /package/test/conformance/cases/lists/{extra_not_member_compound_success.eye → extra_not_member_compound_success.pl} +0 -0
- /package/test/conformance/cases/lists/{nth0_known_value.eye → nth0_known_value.pl} +0 -0
- /package/test/conformance/cases/materialize/{arity_specific_outputs.eye → arity_specific_outputs.pl} +0 -0
- /package/test/conformance/cases/materialize/{extra_materialize_derived_only_with_same_source.eye → extra_materialize_derived_only_with_same_source.pl} +0 -0
- /package/test/conformance/cases/materialize/{extra_materialize_selects_arity.eye → extra_materialize_selects_arity.pl} +0 -0
- /package/test/conformance/cases/negation/{extra_not_with_bound_fails.eye → extra_not_with_bound_fails.pl} +0 -0
- /package/test/conformance/cases/negation/{extra_not_with_bound_success.eye → extra_not_with_bound_success.pl} +0 -0
- /package/test/conformance/cases/negation/{not_known_goal_fails.eye → not_known_goal_fails.pl} +0 -0
- /package/test/conformance/cases/negation/{not_unknown_goal_succeeds.eye → not_unknown_goal_succeeds.pl} +0 -0
- /package/test/conformance/cases/strings/{contains_empty_needle.eye → contains_empty_needle.pl} +0 -0
- /package/test/conformance/cases/strings/{extra_matches_invalid_pattern_fails.eye → extra_matches_invalid_pattern_fails.pl} +0 -0
- /package/test/conformance/cases/strings/{matches_simple_alternation.eye → matches_simple_alternation.pl} +0 -0
- /package/test/conformance/cases/strings/{not_matches_simple_pattern.eye → not_matches_simple_pattern.pl} +0 -0
- /package/test/conformance/cases/syntax/{comments_inside_program.eye → comments_inside_program.pl} +0 -0
- /package/test/conformance/cases/syntax/{extra_comments_after_terms.eye → extra_comments_after_terms.pl} +0 -0
- /package/test/conformance/cases/syntax/{extra_nested_parenthesized_body.eye → extra_nested_parenthesized_body.pl} +0 -0
- /package/test/conformance/cases/syntax/{quoted_atom_with_newline_escape.eye → quoted_atom_with_newline_escape.pl} +0 -0
- /package/test/conformance/cases/syntax/{string_with_tab_escape.eye → string_with_tab_escape.pl} +0 -0
- /package/test/conformance/cases/terms/{herbrand_witness_different_inputs_distinct.eye → herbrand_witness_different_inputs_distinct.pl} +0 -0
- /package/test/conformance/cases/terms/{herbrand_witness_same_inputs_same_term.eye → herbrand_witness_same_inputs_same_term.pl} +0 -0
- /package/test/conformance/cases/unification/{compound_arity_mismatch_fails.eye → compound_arity_mismatch_fails.pl} +0 -0
- /package/test/conformance/cases/unification/{extra_eq_scalar_number_atom.eye → extra_eq_scalar_number_atom.pl} +0 -0
- /package/test/conformance/cases/unification/{extra_eq_scalar_string_number.eye → extra_eq_scalar_string_number.pl} +0 -0
- /package/test/conformance/cases/unification/{extra_neq_compound_arity_mismatch.eye → extra_neq_compound_arity_mismatch.pl} +0 -0
- /package/test/conformance/cases/unification/{extra_neq_scalar_same_lexical_fails.eye → extra_neq_scalar_same_lexical_fails.pl} +0 -0
- /package/test/conformance/cases/unification/{scalar_cross_type_same_lexical_value.eye → scalar_cross_type_same_lexical_value.pl} +0 -0
- /package/test/conformance/errors/atoms/{extra_angle_iri_backslash_rejected.eye → extra_angle_iri_backslash_rejected.pl} +0 -0
- /package/test/conformance/errors/atoms/{extra_angle_iri_pipe_rejected.eye → extra_angle_iri_pipe_rejected.pl} +0 -0
- /package/test/conformance/errors/atoms/{extra_angle_iri_quote_rejected.eye → extra_angle_iri_quote_rejected.pl} +0 -0
- /package/test/conformance/errors/atoms/{hash_comment_not_atom_at_line_start.eye → hash_comment_not_atom_at_line_start.pl} +0 -0
- /package/test/conformance/errors/atoms/{relative_angle_name_rejected.eye → relative_angle_name_rejected.pl} +0 -0
- /package/test/conformance/errors/atoms/{space_in_angle_iri_rejected.eye → space_in_angle_iri_rejected.pl} +0 -0
- /package/test/conformance/errors/atoms/{unclosed_angle_iri_rejected.eye → unclosed_angle_iri_rejected.pl} +0 -0
- /package/test/conformance/errors/atoms/{zero_arity_compound_rejected.eye → zero_arity_compound_rejected.pl} +0 -0
- /package/test/conformance/errors/lists/{extra_missing_tail_after_bar.eye → extra_missing_tail_after_bar.pl} +0 -0
- /package/test/conformance/errors/lists/{extra_unclosed_list_tail.eye → extra_unclosed_list_tail.pl} +0 -0
- /package/test/conformance/errors/lists/{missing_list_tail.eye → missing_list_tail.pl} +0 -0
- /package/test/conformance/errors/rules/{extra_empty_head_with_body.eye → extra_empty_head_with_body.pl} +0 -0
- /package/test/conformance/errors/rules/{extra_rule_without_body.eye → extra_rule_without_body.pl} +0 -0
- /package/test/conformance/errors/rules/{rule_head_cannot_be_empty_parentheses.eye → rule_head_cannot_be_empty_parentheses.pl} +0 -0
- /package/test/conformance/errors/syntax/{angle_iri_with_space_rejected.eye → angle_iri_with_space_rejected.pl} +0 -0
- /package/test/conformance/errors/syntax/{bad_question_digit_variable.eye → bad_question_digit_variable.pl} +0 -0
- /package/test/conformance/errors/syntax/{colon_name_rejected.eye → colon_name_rejected.pl} +0 -0
- /package/test/conformance/errors/syntax/{empty_body_after_rule_marker.eye → empty_body_after_rule_marker.pl} +0 -0
- /package/test/conformance/errors/syntax/{empty_compound_nested.eye → empty_compound_nested.pl} +0 -0
- /package/test/conformance/errors/syntax/{extra_bad_backtick_character.eye → extra_bad_backtick_character.pl} +0 -0
- /package/test/conformance/errors/syntax/{extra_bad_iri_empty_body.eye → extra_bad_iri_empty_body.pl} +0 -0
- /package/test/conformance/errors/syntax/{extra_bad_list_double_comma.eye → extra_bad_list_double_comma.pl} +0 -0
- /package/test/conformance/errors/syntax/{extra_bad_list_double_tail.eye → extra_bad_list_double_tail.pl} +0 -0
- /package/test/conformance/errors/syntax/{extra_bad_number_two_decimal_points.eye → extra_bad_number_two_decimal_points.pl} +0 -0
- /package/test/conformance/errors/syntax/{extra_double_period_rejected.eye → extra_double_period_rejected.pl} +0 -0
- /package/test/conformance/errors/syntax/{extra_extra_closing_paren.eye → extra_extra_closing_paren.pl} +0 -0
- /package/test/conformance/errors/syntax/{extra_missing_closing_rule_body.eye → extra_missing_closing_rule_body.pl} +0 -0
- /package/test/conformance/errors/syntax/{extra_missing_head_rejected.eye → extra_missing_head_rejected.pl} +0 -0
- /package/test/conformance/errors/syntax/{missing_final_dot_rejected.eye → missing_final_dot_rejected.pl} +0 -0
- /package/test/conformance/errors/syntax/{missing_period.eye → missing_period.pl} +0 -0
- /package/test/conformance/errors/syntax/{relative_angle_iri_rejected.eye → relative_angle_iri_rejected.pl} +0 -0
- /package/test/conformance/errors/syntax/{trailing_comma_in_body.eye → trailing_comma_in_body.pl} +0 -0
- /package/test/conformance/errors/syntax/{unclosed_compound.eye → unclosed_compound.pl} +0 -0
- /package/test/conformance/errors/syntax/{unclosed_list.eye → unclosed_list.pl} +0 -0
- /package/test/conformance/errors/syntax/{unclosed_list_rejected.eye → unclosed_list_rejected.pl} +0 -0
- /package/test/conformance/errors/syntax/{unclosed_quoted_atom.eye → unclosed_quoted_atom.pl} +0 -0
- /package/test/conformance/errors/syntax/{unclosed_quoted_atom_rejected.eye → unclosed_quoted_atom_rejected.pl} +0 -0
- /package/test/conformance/errors/syntax/{unclosed_string.eye → unclosed_string.pl} +0 -0
- /package/test/conformance/errors/syntax/{unquoted_colon_predicate.eye → unquoted_colon_predicate.pl} +0 -0
- /package/test/conformance/errors/syntax/{unquoted_dotted_predicate.eye → unquoted_dotted_predicate.pl} +0 -0
- /package/test/conformance/errors/syntax/{uppercase_predicate_rejected.eye → uppercase_predicate_rejected.pl} +0 -0
- /package/test/conformance/errors/terms/{extra_empty_nested_compound.eye → extra_empty_nested_compound.pl} +0 -0
- /package/test/conformance/errors/terms/{extra_empty_top_level_compound.eye → extra_empty_top_level_compound.pl} +0 -0
- /package/test/conformance/errors/terms/{zero_arity_compound_nested_rejected.eye → zero_arity_compound_nested_rejected.pl} +0 -0
- /package/test/conformance/errors/variables/{question_digit_rejected.eye → question_digit_rejected.pl} +0 -0
- /package/test/conformance/expected/aggregation/{044_findall_user_goal.eye → 044_findall_user_goal.pl} +0 -0
- /package/test/conformance/expected/aggregation/{057_countall_empty_and_nonempty.eye → 057_countall_empty_and_nonempty.pl} +0 -0
- /package/test/conformance/expected/aggregation/{058_sumall_numeric_template.eye → 058_sumall_numeric_template.pl} +0 -0
- /package/test/conformance/expected/aggregation/{059_aggregate_min_template.eye → 059_aggregate_min_template.pl} +0 -0
- /package/test/conformance/expected/aggregation/{060_aggregate_max_compound_key.eye → 060_aggregate_max_compound_key.pl} +0 -0
- /package/test/conformance/expected/aggregation/{075_aggregation_edges.eye → 075_aggregation_edges.pl} +0 -0
- /package/test/conformance/expected/aggregation/{098_aggregation_nested_templates.eye → 098_aggregation_nested_templates.pl} +0 -0
- /package/test/conformance/expected/aggregation/{aggregate_max_no_answers_fails.eye → aggregate_max_no_answers_fails.pl} +0 -0
- /package/test/conformance/expected/aggregation/{aggregate_min_structured_key.eye → aggregate_min_structured_key.pl} +0 -0
- /package/test/conformance/expected/aggregation/{countall_zero.eye → countall_zero.pl} +0 -0
- /package/test/conformance/expected/aggregation/{extra_aggregate_min_tie_first.eye → extra_aggregate_min_tie_first.pl} +0 -0
- /package/test/conformance/expected/aggregation/{extra_countall_with_filter.eye → extra_countall_with_filter.pl} +0 -0
- /package/test/conformance/expected/aggregation/{extra_findall_repeated_template.eye → extra_findall_repeated_template.pl} +0 -0
- /package/test/conformance/expected/aggregation/{extra_sumall_float_template.eye → extra_sumall_float_template.pl} +0 -0
- /package/test/conformance/expected/aggregation/{findall_empty_bag.eye → findall_empty_bag.pl} +0 -0
- /package/test/conformance/expected/aggregation/{sumall_empty_zero.eye → sumall_empty_zero.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{024_numeric_literal_readback.eye → 024_numeric_literal_readback.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{029_arithmetic_and_comparison.eye → 029_arithmetic_and_comparison.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{039_numeric_functions.eye → 039_numeric_functions.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{040_between_enumeration.eye → 040_between_enumeration.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{041_smallest_divisor.eye → 041_smallest_divisor.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{054_numeric_and_lexical_comparison.eye → 054_numeric_and_lexical_comparison.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{061_date_difference.eye → 061_date_difference.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{062_reusable_numeric_builtins.eye → 062_reusable_numeric_builtins.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{066_numeric_edges.eye → 066_numeric_edges.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{079_big_integer_arithmetic.eye → 079_big_integer_arithmetic.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{080_rounding_modes.eye → 080_rounding_modes.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{081_zero_safe_numeric_functions.eye → 081_zero_safe_numeric_functions.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{082_comparison_semantics.eye → 082_comparison_semantics.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{083_between_modes_and_empty_ranges.eye → 083_between_modes_and_empty_ranges.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{between_bound_value.eye → between_bound_value.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{between_singleton.eye → between_singleton.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{duration_comparison.eye → duration_comparison.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_acos_one.eye → extra_acos_one.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_asin_zero.eye → extra_asin_zero.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_atan2_axis.eye → extra_atan2_axis.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_difference_leap_day.eye → extra_difference_leap_day.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_difference_same_day.eye → extra_difference_same_day.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_div_float_exact.eye → extra_div_float_exact.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_div_integer_trunc.eye → extra_div_integer_trunc.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_division_by_zero_fails.eye → extra_division_by_zero_fails.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_exp_zero.eye → extra_exp_zero.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_ge_equal_duration.eye → extra_ge_equal_duration.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_le_equal_string.eye → extra_le_equal_string.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_log_one.eye → extra_log_one.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_mod_negative_right.eye → extra_mod_negative_right.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{extra_pow_large_integer.eye → extra_pow_large_integer.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{float_add_and_div.eye → float_add_and_div.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{min_max_mixed.eye → min_max_mixed.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{mod_negative_left.eye → mod_negative_left.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{neg_abs_integer.eye → neg_abs_integer.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{pow_negative_exponent_fails.eye → pow_negative_exponent_fails.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{pow_zero_exponent.eye → pow_zero_exponent.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{rounding_negative_float.eye → rounding_negative_float.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{smallest_divisor_prime.eye → smallest_divisor_prime.pl} +0 -0
- /package/test/conformance/expected/arithmetic/{sqrt_negative_fails.eye → sqrt_negative_fails.pl} +0 -0
- /package/test/conformance/expected/atoms/{008_graphic_atoms.eye → 008_graphic_atoms.pl} +0 -0
- /package/test/conformance/expected/atoms/{016_arity_zero_atom.eye → 016_arity_zero_atom.pl} +0 -0
- /package/test/conformance/expected/atoms/{018_quoted_atom_readback.eye → 018_quoted_atom_readback.pl} +0 -0
- /package/test/conformance/expected/atoms/{angle_iri_percent_encoded.eye → angle_iri_percent_encoded.pl} +0 -0
- /package/test/conformance/expected/atoms/{extra_graphic_backslash_atom.eye → extra_graphic_backslash_atom.pl} +0 -0
- /package/test/conformance/expected/atoms/{extra_iri_mailto_plus.eye → extra_iri_mailto_plus.pl} +0 -0
- /package/test/conformance/expected/atoms/{extra_iri_uuid_scheme.eye → extra_iri_uuid_scheme.pl} +0 -0
- /package/test/conformance/expected/atoms/{extra_quoted_atom_with_quote_readback.eye → extra_quoted_atom_with_quote_readback.pl} +0 -0
- /package/test/conformance/expected/atoms/{graphic_angle_atom_stays_graphic.eye → graphic_angle_atom_stays_graphic.pl} +0 -0
- /package/test/conformance/expected/atoms/{graphic_atom_predicate.eye → graphic_atom_predicate.pl} +0 -0
- /package/test/conformance/expected/atoms/{graphic_less_than_atom.eye → graphic_less_than_atom.pl} +0 -0
- /package/test/conformance/expected/atoms/{iri_as_predicate_name_quoted.eye → iri_as_predicate_name_quoted.pl} +0 -0
- /package/test/conformance/expected/atoms/{quoted_relative_iri_not_angle.eye → iri_quoted_and_angle_unify.pl} +0 -0
- /package/test/conformance/expected/{builtins/extra_difference_end_before_start_fails.eye → atoms/quoted_relative_iri_not_angle.pl} +0 -0
- /package/test/conformance/expected/atoms/{zero_arity_atom_roundtrip.eye → zero_arity_atom_roundtrip.pl} +0 -0
- /package/test/conformance/expected/builtins/{037_matching_and_comparison.eye → 037_matching_and_comparison.pl} +0 -0
- /package/test/conformance/expected/builtins/{076_composed_reusable_builtins.eye → 076_composed_reusable_builtins.pl} +0 -0
- /package/test/conformance/expected/builtins/{100_reusable_builtin_workflow.eye → 100_reusable_builtin_workflow.pl} +0 -0
- /package/test/conformance/expected/builtins/{extra_difference_invalid_date_fails.eye → eq_unifies_iri_atoms.pl} +0 -0
- /package/test/conformance/expected/builtins/{extra_neq_same_iri_fails.eye → extra_difference_end_before_start_fails.pl} +0 -0
- /package/test/conformance/expected/{context/extra_holds_ignores_string_parts.eye → builtins/extra_difference_invalid_date_fails.pl} +0 -0
- /package/test/conformance/expected/builtins/{extra_eq_binds_both_sides.eye → extra_eq_binds_both_sides.pl} +0 -0
- /package/test/conformance/expected/builtins/{extra_neq_different_iri_atoms.eye → extra_neq_different_iri_atoms.pl} +0 -0
- /package/test/conformance/expected/context/{032_holds_parts.eye → 032_holds_parts.pl} +0 -0
- /package/test/conformance/expected/context/{051_nested_holds_parts.eye → 051_nested_holds_parts.pl} +0 -0
- /package/test/conformance/expected/context/{052_holds_member.eye → 052_holds_member.pl} +0 -0
- /package/test/conformance/expected/context/{094_context_holds_enumeration.eye → 094_context_holds_enumeration.pl} +0 -0
- /package/test/conformance/expected/context/{extra_holds_atom_parts.eye → extra_holds_atom_parts.pl} +0 -0
- /package/test/conformance/expected/{control/extra_forall_counterexample_fails.eye → context/extra_holds_ignores_string_parts.pl} +0 -0
- /package/test/conformance/expected/context/{extra_holds_list_parts.eye → extra_holds_list_parts.pl} +0 -0
- /package/test/conformance/expected/context/{extra_holds_term_nested_order.eye → extra_holds_term_nested_order.pl} +0 -0
- /package/test/conformance/expected/{atoms/iri_quoted_and_angle_unify.eye → context/holds_compound_formula.pl} +0 -0
- /package/test/conformance/expected/{builtins/eq_unifies_iri_atoms.eye → context/holds_fails_when_missing.pl} +0 -0
- /package/test/conformance/expected/context/{holds_parts_from_formula.eye → holds_parts_from_formula.pl} +0 -0
- /package/test/conformance/expected/control/{014_failure_filters_answers.eye → 014_failure_filters_answers.pl} +0 -0
- /package/test/conformance/expected/control/{043_once_user_predicate.eye → 043_once_user_predicate.pl} +0 -0
- /package/test/conformance/expected/control/{074_forall_edges.eye → 074_forall_edges.pl} +0 -0
- /package/test/conformance/expected/control/{097_control_negation_once_forall.eye → 097_control_negation_once_forall.pl} +0 -0
- /package/test/conformance/expected/{context/holds_compound_formula.eye → control/double_negation_ground_goal.pl} +0 -0
- /package/test/conformance/expected/control/{extra_forall_bound_check.eye → extra_forall_bound_check.pl} +0 -0
- /package/test/conformance/expected/control/{extra_not_unbound_existing_goal_fails.eye → extra_forall_counterexample_fails.pl} +0 -0
- /package/test/conformance/expected/control/{extra_once_empty_fails.eye → extra_not_unbound_existing_goal_fails.pl} +0 -0
- /package/test/conformance/expected/control/{extra_not_unbound_unknown_goal_succeeds.eye → extra_not_unbound_unknown_goal_succeeds.pl} +0 -0
- /package/test/conformance/expected/{lists/extra_length_improper_fails.eye → control/extra_once_empty_fails.pl} +0 -0
- /package/test/conformance/expected/control/{extra_once_preserves_binding.eye → extra_once_preserves_binding.pl} +0 -0
- /package/test/conformance/expected/{context/holds_fails_when_missing.eye → control/forall_detects_counterexample.pl} +0 -0
- /package/test/conformance/expected/control/{double_negation_ground_goal.eye → forall_empty_generator_true.pl} +0 -0
- /package/test/conformance/expected/control/{negation_with_bound_generator.eye → negation_with_bound_generator.pl} +0 -0
- /package/test/conformance/expected/control/{once_keeps_first_answer.eye → once_keeps_first_answer.pl} +0 -0
- /package/test/conformance/expected/declarations/{104_mode_determinism_declarations.eye → 104_mode_determinism_declarations.pl} +0 -0
- /package/test/conformance/expected/{control/forall_detects_counterexample.eye → declarations/det_semidet_do_not_emit_without_materialize.pl} +0 -0
- /package/test/conformance/expected/declarations/{memoize_is_ordinary_fact.eye → memoize_is_ordinary_fact.pl} +0 -0
- /package/test/conformance/expected/declarations/{mode_determinism_are_facts.eye → mode_determinism_are_facts.pl} +0 -0
- /package/test/conformance/expected/{control/forall_empty_generator_true.eye → declarations/mode_ignored_when_arity_mismatch.pl} +0 -0
- /package/test/conformance/expected/declarations/{table_is_also_fact.eye → table_is_also_fact.pl} +0 -0
- /package/test/conformance/expected/lists/{005_list_deconstruction.eye → 005_list_deconstruction.pl} +0 -0
- /package/test/conformance/expected/lists/{015_improper_list_unification.eye → 015_improper_list_unification.pl} +0 -0
- /package/test/conformance/expected/lists/{020_nested_list_terms.eye → 020_nested_list_terms.pl} +0 -0
- /package/test/conformance/expected/lists/{031_lists_aggregation_ordering.eye → 031_lists_aggregation_ordering.pl} +0 -0
- /package/test/conformance/expected/lists/{035_list_relations.eye → 035_list_relations.pl} +0 -0
- /package/test/conformance/expected/lists/{036_append_splits.eye → 036_append_splits.pl} +0 -0
- /package/test/conformance/expected/lists/{045_sort_deduplicates_atoms.eye → 045_sort_deduplicates_atoms.pl} +0 -0
- /package/test/conformance/expected/lists/{046_append_bound_prefix_suffix.eye → 046_append_bound_prefix_suffix.pl} +0 -0
- /package/test/conformance/expected/lists/{047_nth0_index_generation.eye → 047_nth0_index_generation.pl} +0 -0
- /package/test/conformance/expected/lists/{048_set_nth0_edges.eye → 048_set_nth0_edges.pl} +0 -0
- /package/test/conformance/expected/lists/{049_select_duplicate_occurrences.eye → 049_select_duplicate_occurrences.pl} +0 -0
- /package/test/conformance/expected/lists/{063_reusable_list_builtins.eye → 063_reusable_list_builtins.pl} +0 -0
- /package/test/conformance/expected/lists/{067_list_edges.eye → 067_list_edges.pl} +0 -0
- /package/test/conformance/expected/lists/{068_list_generation_order.eye → 068_list_generation_order.pl} +0 -0
- /package/test/conformance/expected/lists/{069_list_summaries_and_sets.eye → 069_list_summaries_and_sets.pl} +0 -0
- /package/test/conformance/expected/lists/{084_append_and_select_composition.eye → 084_append_and_select_composition.pl} +0 -0
- /package/test/conformance/expected/lists/{085_nth_and_update_edges.eye → 085_nth_and_update_edges.pl} +0 -0
- /package/test/conformance/expected/lists/{086_slicing_pipeline.eye → 086_slicing_pipeline.pl} +0 -0
- /package/test/conformance/expected/lists/{087_sort_reverse_length.eye → 087_sort_reverse_length.pl} +0 -0
- /package/test/conformance/expected/lists/{088_list_summaries_failures.eye → 088_list_summaries_failures.pl} +0 -0
- /package/test/conformance/expected/lists/{empty_list_term.eye → empty_list_term.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_append_all_splits_three.eye → extra_append_all_splits_three.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_append_to_improper_tail.eye → extra_append_to_improper_tail.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_drop_all.eye → extra_drop_all.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_head_and_rest_improper.eye → extra_head_and_rest_improper.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_last_singleton.eye → extra_last_singleton.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_not_member_compound_fails.eye → extra_length_improper_fails.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_list_to_set_stable_order.eye → extra_list_to_set_stable_order.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_member_repeated_nested.eye → extra_member_repeated_nested.pl} +0 -0
- /package/test/conformance/expected/lists/{slice_middle.eye → extra_not_member_compound_fails.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_not_member_compound_success.eye → extra_not_member_compound_success.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_nth0_duplicate_indexes.eye → extra_nth0_duplicate_indexes.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_select_structured_duplicate.eye → extra_select_structured_duplicate.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_slice_end.eye → extra_slice_end.pl} +0 -0
- /package/test/conformance/expected/lists/{extra_take_all.eye → extra_take_all.pl} +0 -0
- /package/test/conformance/expected/lists/{head_rest_last.eye → head_rest_last.pl} +0 -0
- /package/test/conformance/expected/lists/{improper_list_readback.eye → improper_list_readback.pl} +0 -0
- /package/test/conformance/expected/lists/{length_empty_and_nested.eye → length_empty_and_nested.pl} +0 -0
- /package/test/conformance/expected/lists/{list_to_set_structural_duplicates.eye → list_to_set_structural_duplicates.pl} +0 -0
- /package/test/conformance/expected/{declarations/det_semidet_do_not_emit_without_materialize.eye → lists/min_list_empty_fails.pl} +0 -0
- /package/test/conformance/expected/{declarations/mode_ignored_when_arity_mismatch.eye → lists/nth0_known_value.pl} +0 -0
- /package/test/conformance/expected/lists/{min_list_empty_fails.eye → nth0_out_of_range_fails.pl} +0 -0
- /package/test/conformance/expected/lists/{reverse_empty.eye → reverse_empty.pl} +0 -0
- /package/test/conformance/expected/lists/{select_all_occurrences.eye → select_all_occurrences.pl} +0 -0
- /package/test/conformance/expected/lists/{set_nth0_middle.eye → set_nth0_middle.pl} +0 -0
- /package/test/conformance/expected/{materialize/arity_specific_outputs.eye → lists/slice_middle.pl} +0 -0
- /package/test/conformance/expected/lists/{nth0_known_value.eye → slice_out_of_range_fails.pl} +0 -0
- /package/test/conformance/expected/lists/{sort_structured_terms.eye → sort_structured_terms.pl} +0 -0
- /package/test/conformance/expected/lists/{sum_list_empty_zero.eye → sum_list_empty_zero.pl} +0 -0
- /package/test/conformance/expected/lists/{sum_min_max_list.eye → sum_min_max_list.pl} +0 -0
- /package/test/conformance/expected/lists/{take_zero_and_drop_all.eye → take_zero_and_drop_all.pl} +0 -0
- /package/test/conformance/expected/materialize/{027_default_derived_output.eye → 027_default_derived_output.pl} +0 -0
- /package/test/conformance/expected/materialize/{028_materialize_focus.eye → 028_materialize_focus.pl} +0 -0
- /package/test/conformance/expected/materialize/{053_materialize_excludes_source_fact.eye → 053_materialize_excludes_source_fact.pl} +0 -0
- /package/test/conformance/expected/materialize/{099_materialize_multiple_arities.eye → 099_materialize_multiple_arities.pl} +0 -0
- /package/test/conformance/expected/materialize/{extra_materialize_selects_arity.eye → arity_specific_outputs.pl} +0 -0
- /package/test/conformance/expected/materialize/{extra_materialize_derived_only_with_same_source.eye → extra_materialize_derived_only_with_same_source.pl} +0 -0
- /package/test/conformance/expected/{negation/extra_not_with_bound_fails.eye → materialize/extra_materialize_selects_arity.pl} +0 -0
- /package/test/conformance/expected/materialize/{source_facts_suppressed.eye → source_facts_suppressed.pl} +0 -0
- /package/test/conformance/expected/negation/{033_negation_once_generators.eye → 033_negation_once_generators.pl} +0 -0
- /package/test/conformance/expected/negation/{042_negation_filter.eye → 042_negation_filter.pl} +0 -0
- /package/test/conformance/expected/negation/{050_not_member_filter.eye → 050_not_member_filter.pl} +0 -0
- /package/test/conformance/expected/negation/{not_known_goal_fails.eye → extra_not_with_bound_fails.pl} +0 -0
- /package/test/conformance/expected/negation/{extra_not_with_bound_success.eye → extra_not_with_bound_success.pl} +0 -0
- /package/test/conformance/expected/{strings/extra_matches_invalid_pattern_fails.eye → negation/not_known_goal_fails.pl} +0 -0
- /package/test/conformance/expected/{lists/nth0_out_of_range_fails.eye → negation/not_unknown_goal_succeeds.pl} +0 -0
- /package/test/conformance/expected/negation/{stratified_negation_answers.eye → stratified_negation_answers.pl} +0 -0
- /package/test/conformance/expected/rules/{001_fact_output.eye → 001_fact_output.pl} +0 -0
- /package/test/conformance/expected/rules/{002_rule_recursion.eye → 002_rule_recursion.pl} +0 -0
- /package/test/conformance/expected/rules/{011_predicate_arity.eye → 011_predicate_arity.pl} +0 -0
- /package/test/conformance/expected/rules/{013_multiple_clauses_order.eye → 013_multiple_clauses_order.pl} +0 -0
- /package/test/conformance/expected/rules/{017_three_step_recursion.eye → 017_three_step_recursion.pl} +0 -0
- /package/test/conformance/expected/rules/{022_rule_head_structure.eye → 022_rule_head_structure.pl} +0 -0
- /package/test/conformance/expected/rules/{077_recursive_path_with_lists.eye → 077_recursive_path_with_lists.pl} +0 -0
- /package/test/conformance/expected/rules/{078_mutual_recursion_with_arithmetic.eye → 078_mutual_recursion_with_arithmetic.pl} +0 -0
- /package/test/conformance/expected/rules/{extra_left_to_right_multiple_bindings.eye → extra_left_to_right_multiple_bindings.pl} +0 -0
- /package/test/conformance/expected/rules/{extra_structured_head_rule.eye → extra_structured_head_rule.pl} +0 -0
- /package/test/conformance/expected/rules/{left_to_right_body_binding.eye → left_to_right_body_binding.pl} +0 -0
- /package/test/conformance/expected/rules/{transitive_rule_three_edges.eye → transitive_rule_three_edges.pl} +0 -0
- /package/test/conformance/expected/strings/{023_quoted_escapes_readback.eye → 023_quoted_escapes_readback.pl} +0 -0
- /package/test/conformance/expected/strings/{030_strings_and_atoms.eye → 030_strings_and_atoms.pl} +0 -0
- /package/test/conformance/expected/strings/{055_string_matching_filters.eye → 055_string_matching_filters.pl} +0 -0
- /package/test/conformance/expected/strings/{056_string_and_atom_concat.eye → 056_string_and_atom_concat.pl} +0 -0
- /package/test/conformance/expected/strings/{064_reusable_string_builtins.eye → 064_reusable_string_builtins.pl} +0 -0
- /package/test/conformance/expected/strings/{070_matches_named_captures.eye → 070_matches_named_captures.pl} +0 -0
- /package/test/conformance/expected/strings/{071_string_edges.eye → 071_string_edges.pl} +0 -0
- /package/test/conformance/expected/strings/{072_string_conversions.eye → 072_string_conversions.pl} +0 -0
- /package/test/conformance/expected/strings/{089_string_split_join_pipeline.eye → 089_string_split_join_pipeline.pl} +0 -0
- /package/test/conformance/expected/strings/{090_string_substring_replace_edges.eye → 090_string_substring_replace_edges.pl} +0 -0
- /package/test/conformance/expected/strings/{091_string_case_and_trim.eye → 091_string_case_and_trim.pl} +0 -0
- /package/test/conformance/expected/strings/{092_scalar_string_conversions.eye → 092_scalar_string_conversions.pl} +0 -0
- /package/test/conformance/expected/strings/{093_regex_named_captures_context.eye → 093_regex_named_captures_context.pl} +0 -0
- /package/test/conformance/expected/strings/{atom_string_from_string.eye → atom_string_from_string.pl} +0 -0
- /package/test/conformance/expected/strings/{casefold_atoms.eye → casefold_atoms.pl} +0 -0
- /package/test/conformance/expected/{lists/slice_out_of_range_fails.eye → strings/contains_empty_needle.pl} +0 -0
- /package/test/conformance/expected/strings/{extra_atom_string_number_input.eye → extra_atom_string_number_input.pl} +0 -0
- /package/test/conformance/expected/strings/{extra_join_empty_list.eye → extra_join_empty_list.pl} +0 -0
- /package/test/conformance/expected/{syntax/comments_inside_program.eye → strings/extra_matches_invalid_pattern_fails.pl} +0 -0
- /package/test/conformance/expected/strings/{extra_named_regex_optional_missing.eye → extra_named_regex_optional_missing.pl} +0 -0
- /package/test/conformance/expected/strings/{extra_number_string_atom_input.eye → extra_number_string_atom_input.pl} +0 -0
- /package/test/conformance/expected/strings/{extra_replace_multiple.eye → extra_replace_multiple.pl} +0 -0
- /package/test/conformance/expected/strings/{extra_split_empty_separator.eye → extra_split_empty_separator.pl} +0 -0
- /package/test/conformance/expected/strings/{extra_substring_last_char.eye → extra_substring_last_char.pl} +0 -0
- /package/test/conformance/expected/strings/{extra_uppercase_mixed_string.eye → extra_uppercase_mixed_string.pl} +0 -0
- /package/test/conformance/expected/strings/{join_mixed_scalars.eye → join_mixed_scalars.pl} +0 -0
- /package/test/conformance/expected/{negation/not_unknown_goal_succeeds.eye → strings/matches_simple_alternation.pl} +0 -0
- /package/test/conformance/expected/strings/{named_regex_two_groups.eye → named_regex_two_groups.pl} +0 -0
- /package/test/conformance/expected/strings/{contains_empty_needle.eye → not_matches_simple_pattern.pl} +0 -0
- /package/test/conformance/expected/strings/{number_string_from_string.eye → number_string_from_string.pl} +0 -0
- /package/test/conformance/expected/strings/{matches_simple_alternation.eye → number_string_rejects_non_numeric.pl} +0 -0
- /package/test/conformance/expected/strings/{replace_empty_search_no_change.eye → replace_empty_search_no_change.pl} +0 -0
- /package/test/conformance/expected/strings/{split_without_separator_match.eye → split_without_separator_match.pl} +0 -0
- /package/test/conformance/expected/strings/{not_matches_simple_pattern.eye → substring_out_of_range_fails.pl} +0 -0
- /package/test/conformance/expected/strings/{substring_zero_count.eye → substring_zero_count.pl} +0 -0
- /package/test/conformance/expected/strings/{trim_tabs_and_spaces.eye → trim_tabs_and_spaces.pl} +0 -0
- /package/test/conformance/expected/syntax/{004_conjunction_and_parentheses.eye → 004_conjunction_and_parentheses.pl} +0 -0
- /package/test/conformance/expected/syntax/{006_comma_formula_data.eye → 006_comma_formula_data.pl} +0 -0
- /package/test/conformance/expected/syntax/{009_comments_and_whitespace.eye → 009_comments_and_whitespace.pl} +0 -0
- /package/test/conformance/expected/syntax/{019_parenthesized_three_conjuncts.eye → 019_parenthesized_three_conjuncts.pl} +0 -0
- /package/test/conformance/expected/syntax/{025_body_parentheses_with_formula_data.eye → 025_body_parentheses_with_formula_data.pl} +0 -0
- /package/test/conformance/expected/syntax/{extra_comments_after_terms.eye → comments_inside_program.pl} +0 -0
- /package/test/conformance/expected/syntax/{quoted_atom_with_newline_escape.eye → extra_comments_after_terms.pl} +0 -0
- /package/test/conformance/expected/syntax/{extra_nested_parenthesized_body.eye → extra_nested_parenthesized_body.pl} +0 -0
- /package/test/conformance/expected/{strings/number_string_rejects_non_numeric.eye → syntax/parenthesized_query_style_body.pl} +0 -0
- /package/test/conformance/expected/syntax/{string_with_tab_escape.eye → quoted_atom_with_newline_escape.pl} +0 -0
- /package/test/conformance/expected/{terms/extra_arg_atom_fails.eye → syntax/string_with_tab_escape.pl} +0 -0
- /package/test/conformance/expected/table/{038_table_declaration.eye → 038_table_declaration.pl} +0 -0
- /package/test/conformance/expected/table/{102_table_declaration.eye → 102_table_declaration.pl} +0 -0
- /package/test/conformance/expected/table/{extra_table_bound_cycle.eye → extra_table_bound_cycle.pl} +0 -0
- /package/test/conformance/expected/table/{extra_table_open_call_fallback.eye → extra_table_open_call_fallback.pl} +0 -0
- /package/test/conformance/expected/table/{table_does_not_change_answers.eye → table_does_not_change_answers.pl} +0 -0
- /package/test/conformance/expected/table/{tabled_left_recursion_path.eye → tabled_left_recursion_path.pl} +0 -0
- /package/test/conformance/expected/terms/{003_terms_and_readback.eye → 003_terms_and_readback.pl} +0 -0
- /package/test/conformance/expected/terms/{065_reusable_term_control_builtins.eye → 065_reusable_term_control_builtins.pl} +0 -0
- /package/test/conformance/expected/terms/{073_term_introspection_edges.eye → 073_term_introspection_edges.pl} +0 -0
- /package/test/conformance/expected/terms/{095_term_introspection_roundtrip.eye → 095_term_introspection_roundtrip.pl} +0 -0
- /package/test/conformance/expected/terms/{096_functor_scalar_edges.eye → 096_functor_scalar_edges.pl} +0 -0
- /package/test/conformance/expected/terms/{arg_first_and_second.eye → arg_first_and_second.pl} +0 -0
- /package/test/conformance/expected/{strings/substring_out_of_range_fails.eye → terms/arg_zero_fails.pl} +0 -0
- /package/test/conformance/expected/terms/{compound_name_arguments_atom_zero_args.eye → compound_name_arguments_atom_zero_args.pl} +0 -0
- /package/test/conformance/expected/{syntax/parenthesized_query_style_body.eye → terms/compound_name_arguments_bad_args_fail.pl} +0 -0
- /package/test/conformance/expected/terms/{compound_name_arguments_builds_atom_from_empty_args.eye → compound_name_arguments_builds_atom_from_empty_args.pl} +0 -0
- /package/test/conformance/expected/terms/{compound_name_arguments_builds_compound.eye → compound_name_arguments_builds_compound.pl} +0 -0
- /package/test/conformance/expected/terms/{extra_arg_zero_fails.eye → extra_arg_atom_fails.pl} +0 -0
- /package/test/conformance/expected/terms/{extra_arg_first_last.eye → extra_arg_first_last.pl} +0 -0
- /package/test/conformance/expected/terms/{extra_compound_name_arguments_bad_args_fails.eye → extra_arg_zero_fails.pl} +0 -0
- /package/test/conformance/expected/{unification/extra_eq_nested_repeated_fails.eye → terms/extra_compound_name_arguments_bad_args_fails.pl} +0 -0
- /package/test/conformance/expected/terms/{extra_compound_name_arguments_construct_atom_zero.eye → extra_compound_name_arguments_construct_atom_zero.pl} +0 -0
- /package/test/conformance/expected/terms/{extra_compound_name_arguments_decompose_list.eye → extra_compound_name_arguments_decompose_list.pl} +0 -0
- /package/test/conformance/expected/terms/{extra_functor_list_cons.eye → extra_functor_list_cons.pl} +0 -0
- /package/test/conformance/expected/terms/{extra_functor_number_scalar.eye → extra_functor_number_scalar.pl} +0 -0
- /package/test/conformance/expected/terms/{extra_functor_string_scalar.eye → extra_functor_string_scalar.pl} +0 -0
- /package/test/conformance/expected/terms/{functor_atom_arity_zero.eye → functor_atom_arity_zero.pl} +0 -0
- /package/test/conformance/expected/terms/{functor_number_and_string.eye → functor_number_and_string.pl} +0 -0
- /package/test/conformance/expected/terms/{herbrand_witness_different_inputs_distinct.eye → herbrand_witness_different_inputs_distinct.pl} +0 -0
- /package/test/conformance/expected/terms/{herbrand_witness_one_input.eye → herbrand_witness_one_input.pl} +0 -0
- /package/test/conformance/expected/terms/{herbrand_witness_same_inputs_same_term.eye → herbrand_witness_same_inputs_same_term.pl} +0 -0
- /package/test/conformance/expected/terms/{herbrand_witness_two_inputs.eye → herbrand_witness_two_inputs.pl} +0 -0
- /package/test/conformance/expected/unification/{012_nested_compound_unification.eye → 012_nested_compound_unification.pl} +0 -0
- /package/test/conformance/expected/unification/{021_repeated_variable_head.eye → 021_repeated_variable_head.pl} +0 -0
- /package/test/conformance/expected/unification/{034_equality_and_inequality.eye → 034_equality_and_inequality.pl} +0 -0
- /package/test/conformance/expected/{terms/arg_zero_fails.eye → unification/compound_arity_mismatch_fails.pl} +0 -0
- /package/test/conformance/expected/unification/{extra_neq_scalar_same_lexical_fails.eye → extra_eq_iri_and_quoted_atom.pl} +0 -0
- /package/test/conformance/expected/unification/{extra_eq_list_tail_binding.eye → extra_eq_list_tail_binding.pl} +0 -0
- /package/test/conformance/expected/unification/{extra_eq_nested_repeated_success.eye → extra_eq_nested_repeated_success.pl} +0 -0
- /package/test/conformance/expected/unification/{extra_eq_scalar_number_atom.eye → extra_eq_scalar_number_atom.pl} +0 -0
- /package/test/conformance/expected/unification/{extra_eq_scalar_string_number.eye → extra_eq_scalar_string_number.pl} +0 -0
- /package/test/conformance/expected/unification/{extra_neq_compound_arity_mismatch.eye → extra_neq_compound_arity_mismatch.pl} +0 -0
- /package/test/conformance/expected/unification/{extra_variable_clause_locality.eye → extra_variable_clause_locality.pl} +0 -0
- /package/test/conformance/expected/unification/{list_tail_binding.eye → list_tail_binding.pl} +0 -0
- /package/test/conformance/expected/unification/{nested_repeated_variable.eye → nested_repeated_variable.pl} +0 -0
- /package/test/conformance/expected/unification/{scalar_cross_type_same_lexical_value.eye → scalar_cross_type_same_lexical_value.pl} +0 -0
- /package/test/conformance/expected/variables/{007_anonymous_variables.eye → 007_anonymous_variables.pl} +0 -0
- /package/test/conformance/expected/variables/{010_variable_scope_and_reuse.eye → 010_variable_scope_and_reuse.pl} +0 -0
- /package/test/conformance/expected/variables/{026_question_underscore_named_variable_reuse.eye → 026_question_underscore_named_variable_reuse.pl} +0 -0
- /package/test/conformance/expected/variables/{101_question_mark_variables.eye → 101_question_mark_variables.pl} +0 -0
- /package/test/conformance/expected/{terms/compound_name_arguments_bad_args_fail.eye → variables/anonymous_in_two_goals.pl} +0 -0
- /package/test/conformance/expected/variables/{clause_local_variable_names.eye → clause_local_variable_names.pl} +0 -0
- /package/test/conformance/expected/variables/{extra_anonymous_not_reused.eye → extra_anonymous_not_reused.pl} +0 -0
- /package/test/conformance/expected/variables/{extra_named_variable_reused.eye → extra_named_variable_reused.pl} +0 -0
- /package/test/conformance/expected/variables/{extra_question_underscore_named_distinct.eye → extra_question_underscore_named_distinct.pl} +0 -0
- /package/test/conformance/expected/variables/{extra_question_uppercase_named.eye → extra_question_uppercase_named.pl} +0 -0
- /package/test/conformance/expected/variables/{question_anonymous_not_reused.eye → question_anonymous_not_reused.pl} +0 -0
- /package/test/conformance/expected/variables/{question_underscore_named_reuse.eye → question_underscore_named_reuse.pl} +0 -0
- /package/test/conformance/expected/{unification/compound_arity_mismatch_fails.eye → variables/question_uppercase_variable.pl} +0 -0
- /package/test/conformance/expected/variables/{anonymous_in_two_goals.eye → question_variable_digits_and_underscore.pl} +0 -0
- /package/test/conformance/expected/variables/{question_uppercase_variable.eye → question_variable_uppercase_name.pl} +0 -0
- /package/test/conformance/expected/variables/{variable_scope_per_clause.eye → variable_scope_per_clause.pl} +0 -0
- /package/test/conformance/expected-proofs/proofs/{conjunction_order.eye → conjunction_order.pl} +0 -0
- /package/test/conformance/expected-proofs/proofs/{extra_negation_success.eye → extra_negation_success.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{extra_stratified_multiple_negations_quiet.eye → extra_stratified_multiple_negations_quiet.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{extra_stratified_negation_with_table_quiet.eye → extra_stratified_negation_with_table_quiet.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{extra_unstratified_indirect_self_with_fact.eye → extra_unstratified_indirect_self_with_fact.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{extra_unstratified_positive_negative_loop.eye → extra_unstratified_positive_negative_loop.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{extra_unstratified_three_cycle_all_negative.eye → extra_unstratified_three_cycle_all_negative.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{extra_warning_preserves_empty_stdout.eye → extra_warning_preserves_empty_stdout.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{negative_unknown_group_quiet.eye → negative_unknown_group_quiet.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{no_negation_quiet.eye → no_negation_quiet.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{stratified_negative_unknown_after_positive_quiet.eye → stratified_negative_unknown_after_positive_quiet.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{stratified_quiet.eye → stratified_quiet.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{stratified_two_level_quiet.eye → stratified_two_level_quiet.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{unstratified_mutual.eye → unstratified_mutual.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{unstratified_positive_prefix.eye → unstratified_positive_prefix.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{unstratified_self.eye → unstratified_self.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{unstratified_three_step.eye → unstratified_three_step.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{unstratified_two_arity_cycle.eye → unstratified_two_arity_cycle.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{unstratified_two_independent_cycles.eye → unstratified_two_independent_cycles.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{unstratified_with_iri_predicates.eye → unstratified_with_iri_predicates.pl} +0 -0
- /package/test/conformance/expected-warnings/negation/{warning_preserves_multiple_stdout_answers.eye → warning_preserves_multiple_stdout_answers.pl} +0 -0
- /package/test/conformance/proofs/proofs/{conjunction_order.eye → conjunction_order.pl} +0 -0
- /package/test/conformance/proofs/proofs/{extra_negation_success.eye → extra_negation_success.pl} +0 -0
- /package/test/conformance/warnings/negation/{extra_stratified_multiple_negations_quiet.eye → extra_stratified_multiple_negations_quiet.pl} +0 -0
- /package/test/conformance/warnings/negation/{extra_unstratified_three_cycle_all_negative.eye → extra_unstratified_three_cycle_all_negative.pl} +0 -0
- /package/test/conformance/warnings/negation/{extra_warning_preserves_empty_stdout.eye → extra_warning_preserves_empty_stdout.pl} +0 -0
- /package/test/conformance/warnings/negation/{negative_unknown_group_quiet.eye → negative_unknown_group_quiet.pl} +0 -0
- /package/test/conformance/warnings/negation/{stratified_quiet.eye → stratified_quiet.pl} +0 -0
- /package/test/conformance/warnings/negation/{unstratified_mutual.eye → unstratified_mutual.pl} +0 -0
- /package/test/conformance/warnings/negation/{unstratified_positive_prefix.eye → unstratified_positive_prefix.pl} +0 -0
- /package/test/conformance/warnings/negation/{unstratified_self.eye → unstratified_self.pl} +0 -0
- /package/test/conformance/warnings/negation/{unstratified_two_arity_cycle.eye → unstratified_two_arity_cycle.pl} +0 -0
- /package/test/conformance/warnings/negation/{unstratified_two_independent_cycles.eye → unstratified_two_independent_cycles.pl} +0 -0
- /package/test/conformance/warnings/negation/{warning_preserves_multiple_stdout_answers.eye → warning_preserves_multiple_stdout_answers.pl} +0 -0
|
@@ -1,3085 +0,0 @@
|
|
|
1
|
-
% =============================================================================================================================
|
|
2
|
-
% Deep Taxonomy - depth 1000 - expanded N3-style eyelang with checkpoint proof accelerators
|
|
3
|
-
%
|
|
4
|
-
% Adjacent rules mirror the Eyeling N3 deep-taxonomy chain. The checkpoint
|
|
5
|
-
% rules are redundant consequences of that chain and are placed first so eyelang
|
|
6
|
-
% can prove terminal/report goals without overflowing the JavaScript call stack.
|
|
7
|
-
% Report/check rules use once/1 so successful checks do not backtrack into a
|
|
8
|
-
% long adjacent-only proof after a shorter checkpoint proof has succeeded.
|
|
9
|
-
% =============================================================================================================================
|
|
10
|
-
|
|
11
|
-
% Output declarations: materialize/2 selects the relations written to this example's golden output.
|
|
12
|
-
materialize(is, 2).
|
|
13
|
-
materialize(answer, 2).
|
|
14
|
-
materialize(reason, 2).
|
|
15
|
-
materialize(result, 2).
|
|
16
|
-
materialize(checkPassed, 2).
|
|
17
|
-
materialize(arc, 2).
|
|
18
|
-
|
|
19
|
-
% Program structure: facts set up the scenario, and rules derive the materialized conclusions.
|
|
20
|
-
% fact
|
|
21
|
-
|
|
22
|
-
a(ind, n0).
|
|
23
|
-
|
|
24
|
-
% terminal rule
|
|
25
|
-
|
|
26
|
-
% Derivation rules: each rule below contributes one logical step toward the displayed results.
|
|
27
|
-
is(test, true) :- once(a(ind, a2)).
|
|
28
|
-
a(?x, a2) :- a(?x, n1000).
|
|
29
|
-
|
|
30
|
-
% Redundant checkpoint accelerators.
|
|
31
|
-
|
|
32
|
-
a(?x, n1000) :- a(?x, n0).
|
|
33
|
-
a(?x, n499) :- a(?x, n0).
|
|
34
|
-
a(?x, n999) :- a(?x, n0).
|
|
35
|
-
|
|
36
|
-
% Adjacent N3-style taxonomy rules.
|
|
37
|
-
|
|
38
|
-
a(?x, n1) :- a(?x, n0).
|
|
39
|
-
a(?x, i1) :- a(?x, n0).
|
|
40
|
-
a(?x, j1) :- a(?x, n0).
|
|
41
|
-
a(?x, n2) :- a(?x, n1).
|
|
42
|
-
a(?x, i2) :- a(?x, n1).
|
|
43
|
-
a(?x, j2) :- a(?x, n1).
|
|
44
|
-
a(?x, n3) :- a(?x, n2).
|
|
45
|
-
a(?x, i3) :- a(?x, n2).
|
|
46
|
-
a(?x, j3) :- a(?x, n2).
|
|
47
|
-
a(?x, n4) :- a(?x, n3).
|
|
48
|
-
a(?x, i4) :- a(?x, n3).
|
|
49
|
-
a(?x, j4) :- a(?x, n3).
|
|
50
|
-
a(?x, n5) :- a(?x, n4).
|
|
51
|
-
a(?x, i5) :- a(?x, n4).
|
|
52
|
-
a(?x, j5) :- a(?x, n4).
|
|
53
|
-
a(?x, n6) :- a(?x, n5).
|
|
54
|
-
a(?x, i6) :- a(?x, n5).
|
|
55
|
-
a(?x, j6) :- a(?x, n5).
|
|
56
|
-
a(?x, n7) :- a(?x, n6).
|
|
57
|
-
a(?x, i7) :- a(?x, n6).
|
|
58
|
-
a(?x, j7) :- a(?x, n6).
|
|
59
|
-
a(?x, n8) :- a(?x, n7).
|
|
60
|
-
a(?x, i8) :- a(?x, n7).
|
|
61
|
-
a(?x, j8) :- a(?x, n7).
|
|
62
|
-
a(?x, n9) :- a(?x, n8).
|
|
63
|
-
a(?x, i9) :- a(?x, n8).
|
|
64
|
-
a(?x, j9) :- a(?x, n8).
|
|
65
|
-
a(?x, n10) :- a(?x, n9).
|
|
66
|
-
a(?x, i10) :- a(?x, n9).
|
|
67
|
-
a(?x, j10) :- a(?x, n9).
|
|
68
|
-
a(?x, n11) :- a(?x, n10).
|
|
69
|
-
a(?x, i11) :- a(?x, n10).
|
|
70
|
-
a(?x, j11) :- a(?x, n10).
|
|
71
|
-
a(?x, n12) :- a(?x, n11).
|
|
72
|
-
a(?x, i12) :- a(?x, n11).
|
|
73
|
-
a(?x, j12) :- a(?x, n11).
|
|
74
|
-
a(?x, n13) :- a(?x, n12).
|
|
75
|
-
a(?x, i13) :- a(?x, n12).
|
|
76
|
-
a(?x, j13) :- a(?x, n12).
|
|
77
|
-
a(?x, n14) :- a(?x, n13).
|
|
78
|
-
a(?x, i14) :- a(?x, n13).
|
|
79
|
-
a(?x, j14) :- a(?x, n13).
|
|
80
|
-
a(?x, n15) :- a(?x, n14).
|
|
81
|
-
a(?x, i15) :- a(?x, n14).
|
|
82
|
-
a(?x, j15) :- a(?x, n14).
|
|
83
|
-
a(?x, n16) :- a(?x, n15).
|
|
84
|
-
a(?x, i16) :- a(?x, n15).
|
|
85
|
-
a(?x, j16) :- a(?x, n15).
|
|
86
|
-
a(?x, n17) :- a(?x, n16).
|
|
87
|
-
a(?x, i17) :- a(?x, n16).
|
|
88
|
-
a(?x, j17) :- a(?x, n16).
|
|
89
|
-
a(?x, n18) :- a(?x, n17).
|
|
90
|
-
a(?x, i18) :- a(?x, n17).
|
|
91
|
-
a(?x, j18) :- a(?x, n17).
|
|
92
|
-
a(?x, n19) :- a(?x, n18).
|
|
93
|
-
a(?x, i19) :- a(?x, n18).
|
|
94
|
-
a(?x, j19) :- a(?x, n18).
|
|
95
|
-
a(?x, n20) :- a(?x, n19).
|
|
96
|
-
a(?x, i20) :- a(?x, n19).
|
|
97
|
-
a(?x, j20) :- a(?x, n19).
|
|
98
|
-
a(?x, n21) :- a(?x, n20).
|
|
99
|
-
a(?x, i21) :- a(?x, n20).
|
|
100
|
-
a(?x, j21) :- a(?x, n20).
|
|
101
|
-
a(?x, n22) :- a(?x, n21).
|
|
102
|
-
a(?x, i22) :- a(?x, n21).
|
|
103
|
-
a(?x, j22) :- a(?x, n21).
|
|
104
|
-
a(?x, n23) :- a(?x, n22).
|
|
105
|
-
a(?x, i23) :- a(?x, n22).
|
|
106
|
-
a(?x, j23) :- a(?x, n22).
|
|
107
|
-
a(?x, n24) :- a(?x, n23).
|
|
108
|
-
a(?x, i24) :- a(?x, n23).
|
|
109
|
-
a(?x, j24) :- a(?x, n23).
|
|
110
|
-
a(?x, n25) :- a(?x, n24).
|
|
111
|
-
a(?x, i25) :- a(?x, n24).
|
|
112
|
-
a(?x, j25) :- a(?x, n24).
|
|
113
|
-
a(?x, n26) :- a(?x, n25).
|
|
114
|
-
a(?x, i26) :- a(?x, n25).
|
|
115
|
-
a(?x, j26) :- a(?x, n25).
|
|
116
|
-
a(?x, n27) :- a(?x, n26).
|
|
117
|
-
a(?x, i27) :- a(?x, n26).
|
|
118
|
-
a(?x, j27) :- a(?x, n26).
|
|
119
|
-
a(?x, n28) :- a(?x, n27).
|
|
120
|
-
a(?x, i28) :- a(?x, n27).
|
|
121
|
-
a(?x, j28) :- a(?x, n27).
|
|
122
|
-
a(?x, n29) :- a(?x, n28).
|
|
123
|
-
a(?x, i29) :- a(?x, n28).
|
|
124
|
-
a(?x, j29) :- a(?x, n28).
|
|
125
|
-
a(?x, n30) :- a(?x, n29).
|
|
126
|
-
a(?x, i30) :- a(?x, n29).
|
|
127
|
-
a(?x, j30) :- a(?x, n29).
|
|
128
|
-
a(?x, n31) :- a(?x, n30).
|
|
129
|
-
a(?x, i31) :- a(?x, n30).
|
|
130
|
-
a(?x, j31) :- a(?x, n30).
|
|
131
|
-
a(?x, n32) :- a(?x, n31).
|
|
132
|
-
a(?x, i32) :- a(?x, n31).
|
|
133
|
-
a(?x, j32) :- a(?x, n31).
|
|
134
|
-
a(?x, n33) :- a(?x, n32).
|
|
135
|
-
a(?x, i33) :- a(?x, n32).
|
|
136
|
-
a(?x, j33) :- a(?x, n32).
|
|
137
|
-
a(?x, n34) :- a(?x, n33).
|
|
138
|
-
a(?x, i34) :- a(?x, n33).
|
|
139
|
-
a(?x, j34) :- a(?x, n33).
|
|
140
|
-
a(?x, n35) :- a(?x, n34).
|
|
141
|
-
a(?x, i35) :- a(?x, n34).
|
|
142
|
-
a(?x, j35) :- a(?x, n34).
|
|
143
|
-
a(?x, n36) :- a(?x, n35).
|
|
144
|
-
a(?x, i36) :- a(?x, n35).
|
|
145
|
-
a(?x, j36) :- a(?x, n35).
|
|
146
|
-
a(?x, n37) :- a(?x, n36).
|
|
147
|
-
a(?x, i37) :- a(?x, n36).
|
|
148
|
-
a(?x, j37) :- a(?x, n36).
|
|
149
|
-
a(?x, n38) :- a(?x, n37).
|
|
150
|
-
a(?x, i38) :- a(?x, n37).
|
|
151
|
-
a(?x, j38) :- a(?x, n37).
|
|
152
|
-
a(?x, n39) :- a(?x, n38).
|
|
153
|
-
a(?x, i39) :- a(?x, n38).
|
|
154
|
-
a(?x, j39) :- a(?x, n38).
|
|
155
|
-
a(?x, n40) :- a(?x, n39).
|
|
156
|
-
a(?x, i40) :- a(?x, n39).
|
|
157
|
-
a(?x, j40) :- a(?x, n39).
|
|
158
|
-
a(?x, n41) :- a(?x, n40).
|
|
159
|
-
a(?x, i41) :- a(?x, n40).
|
|
160
|
-
a(?x, j41) :- a(?x, n40).
|
|
161
|
-
a(?x, n42) :- a(?x, n41).
|
|
162
|
-
a(?x, i42) :- a(?x, n41).
|
|
163
|
-
a(?x, j42) :- a(?x, n41).
|
|
164
|
-
a(?x, n43) :- a(?x, n42).
|
|
165
|
-
a(?x, i43) :- a(?x, n42).
|
|
166
|
-
a(?x, j43) :- a(?x, n42).
|
|
167
|
-
a(?x, n44) :- a(?x, n43).
|
|
168
|
-
a(?x, i44) :- a(?x, n43).
|
|
169
|
-
a(?x, j44) :- a(?x, n43).
|
|
170
|
-
a(?x, n45) :- a(?x, n44).
|
|
171
|
-
a(?x, i45) :- a(?x, n44).
|
|
172
|
-
a(?x, j45) :- a(?x, n44).
|
|
173
|
-
a(?x, n46) :- a(?x, n45).
|
|
174
|
-
a(?x, i46) :- a(?x, n45).
|
|
175
|
-
a(?x, j46) :- a(?x, n45).
|
|
176
|
-
a(?x, n47) :- a(?x, n46).
|
|
177
|
-
a(?x, i47) :- a(?x, n46).
|
|
178
|
-
a(?x, j47) :- a(?x, n46).
|
|
179
|
-
a(?x, n48) :- a(?x, n47).
|
|
180
|
-
a(?x, i48) :- a(?x, n47).
|
|
181
|
-
a(?x, j48) :- a(?x, n47).
|
|
182
|
-
a(?x, n49) :- a(?x, n48).
|
|
183
|
-
a(?x, i49) :- a(?x, n48).
|
|
184
|
-
a(?x, j49) :- a(?x, n48).
|
|
185
|
-
a(?x, n50) :- a(?x, n49).
|
|
186
|
-
a(?x, i50) :- a(?x, n49).
|
|
187
|
-
a(?x, j50) :- a(?x, n49).
|
|
188
|
-
a(?x, n51) :- a(?x, n50).
|
|
189
|
-
a(?x, i51) :- a(?x, n50).
|
|
190
|
-
a(?x, j51) :- a(?x, n50).
|
|
191
|
-
a(?x, n52) :- a(?x, n51).
|
|
192
|
-
a(?x, i52) :- a(?x, n51).
|
|
193
|
-
a(?x, j52) :- a(?x, n51).
|
|
194
|
-
a(?x, n53) :- a(?x, n52).
|
|
195
|
-
a(?x, i53) :- a(?x, n52).
|
|
196
|
-
a(?x, j53) :- a(?x, n52).
|
|
197
|
-
a(?x, n54) :- a(?x, n53).
|
|
198
|
-
a(?x, i54) :- a(?x, n53).
|
|
199
|
-
a(?x, j54) :- a(?x, n53).
|
|
200
|
-
a(?x, n55) :- a(?x, n54).
|
|
201
|
-
a(?x, i55) :- a(?x, n54).
|
|
202
|
-
a(?x, j55) :- a(?x, n54).
|
|
203
|
-
a(?x, n56) :- a(?x, n55).
|
|
204
|
-
a(?x, i56) :- a(?x, n55).
|
|
205
|
-
a(?x, j56) :- a(?x, n55).
|
|
206
|
-
a(?x, n57) :- a(?x, n56).
|
|
207
|
-
a(?x, i57) :- a(?x, n56).
|
|
208
|
-
a(?x, j57) :- a(?x, n56).
|
|
209
|
-
a(?x, n58) :- a(?x, n57).
|
|
210
|
-
a(?x, i58) :- a(?x, n57).
|
|
211
|
-
a(?x, j58) :- a(?x, n57).
|
|
212
|
-
a(?x, n59) :- a(?x, n58).
|
|
213
|
-
a(?x, i59) :- a(?x, n58).
|
|
214
|
-
a(?x, j59) :- a(?x, n58).
|
|
215
|
-
a(?x, n60) :- a(?x, n59).
|
|
216
|
-
a(?x, i60) :- a(?x, n59).
|
|
217
|
-
a(?x, j60) :- a(?x, n59).
|
|
218
|
-
a(?x, n61) :- a(?x, n60).
|
|
219
|
-
a(?x, i61) :- a(?x, n60).
|
|
220
|
-
a(?x, j61) :- a(?x, n60).
|
|
221
|
-
a(?x, n62) :- a(?x, n61).
|
|
222
|
-
a(?x, i62) :- a(?x, n61).
|
|
223
|
-
a(?x, j62) :- a(?x, n61).
|
|
224
|
-
a(?x, n63) :- a(?x, n62).
|
|
225
|
-
a(?x, i63) :- a(?x, n62).
|
|
226
|
-
a(?x, j63) :- a(?x, n62).
|
|
227
|
-
a(?x, n64) :- a(?x, n63).
|
|
228
|
-
a(?x, i64) :- a(?x, n63).
|
|
229
|
-
a(?x, j64) :- a(?x, n63).
|
|
230
|
-
a(?x, n65) :- a(?x, n64).
|
|
231
|
-
a(?x, i65) :- a(?x, n64).
|
|
232
|
-
a(?x, j65) :- a(?x, n64).
|
|
233
|
-
a(?x, n66) :- a(?x, n65).
|
|
234
|
-
a(?x, i66) :- a(?x, n65).
|
|
235
|
-
a(?x, j66) :- a(?x, n65).
|
|
236
|
-
a(?x, n67) :- a(?x, n66).
|
|
237
|
-
a(?x, i67) :- a(?x, n66).
|
|
238
|
-
a(?x, j67) :- a(?x, n66).
|
|
239
|
-
a(?x, n68) :- a(?x, n67).
|
|
240
|
-
a(?x, i68) :- a(?x, n67).
|
|
241
|
-
a(?x, j68) :- a(?x, n67).
|
|
242
|
-
a(?x, n69) :- a(?x, n68).
|
|
243
|
-
a(?x, i69) :- a(?x, n68).
|
|
244
|
-
a(?x, j69) :- a(?x, n68).
|
|
245
|
-
a(?x, n70) :- a(?x, n69).
|
|
246
|
-
a(?x, i70) :- a(?x, n69).
|
|
247
|
-
a(?x, j70) :- a(?x, n69).
|
|
248
|
-
a(?x, n71) :- a(?x, n70).
|
|
249
|
-
a(?x, i71) :- a(?x, n70).
|
|
250
|
-
a(?x, j71) :- a(?x, n70).
|
|
251
|
-
a(?x, n72) :- a(?x, n71).
|
|
252
|
-
a(?x, i72) :- a(?x, n71).
|
|
253
|
-
a(?x, j72) :- a(?x, n71).
|
|
254
|
-
a(?x, n73) :- a(?x, n72).
|
|
255
|
-
a(?x, i73) :- a(?x, n72).
|
|
256
|
-
a(?x, j73) :- a(?x, n72).
|
|
257
|
-
a(?x, n74) :- a(?x, n73).
|
|
258
|
-
a(?x, i74) :- a(?x, n73).
|
|
259
|
-
a(?x, j74) :- a(?x, n73).
|
|
260
|
-
a(?x, n75) :- a(?x, n74).
|
|
261
|
-
a(?x, i75) :- a(?x, n74).
|
|
262
|
-
a(?x, j75) :- a(?x, n74).
|
|
263
|
-
a(?x, n76) :- a(?x, n75).
|
|
264
|
-
a(?x, i76) :- a(?x, n75).
|
|
265
|
-
a(?x, j76) :- a(?x, n75).
|
|
266
|
-
a(?x, n77) :- a(?x, n76).
|
|
267
|
-
a(?x, i77) :- a(?x, n76).
|
|
268
|
-
a(?x, j77) :- a(?x, n76).
|
|
269
|
-
a(?x, n78) :- a(?x, n77).
|
|
270
|
-
a(?x, i78) :- a(?x, n77).
|
|
271
|
-
a(?x, j78) :- a(?x, n77).
|
|
272
|
-
a(?x, n79) :- a(?x, n78).
|
|
273
|
-
a(?x, i79) :- a(?x, n78).
|
|
274
|
-
a(?x, j79) :- a(?x, n78).
|
|
275
|
-
a(?x, n80) :- a(?x, n79).
|
|
276
|
-
a(?x, i80) :- a(?x, n79).
|
|
277
|
-
a(?x, j80) :- a(?x, n79).
|
|
278
|
-
a(?x, n81) :- a(?x, n80).
|
|
279
|
-
a(?x, i81) :- a(?x, n80).
|
|
280
|
-
a(?x, j81) :- a(?x, n80).
|
|
281
|
-
a(?x, n82) :- a(?x, n81).
|
|
282
|
-
a(?x, i82) :- a(?x, n81).
|
|
283
|
-
a(?x, j82) :- a(?x, n81).
|
|
284
|
-
a(?x, n83) :- a(?x, n82).
|
|
285
|
-
a(?x, i83) :- a(?x, n82).
|
|
286
|
-
a(?x, j83) :- a(?x, n82).
|
|
287
|
-
a(?x, n84) :- a(?x, n83).
|
|
288
|
-
a(?x, i84) :- a(?x, n83).
|
|
289
|
-
a(?x, j84) :- a(?x, n83).
|
|
290
|
-
a(?x, n85) :- a(?x, n84).
|
|
291
|
-
a(?x, i85) :- a(?x, n84).
|
|
292
|
-
a(?x, j85) :- a(?x, n84).
|
|
293
|
-
a(?x, n86) :- a(?x, n85).
|
|
294
|
-
a(?x, i86) :- a(?x, n85).
|
|
295
|
-
a(?x, j86) :- a(?x, n85).
|
|
296
|
-
a(?x, n87) :- a(?x, n86).
|
|
297
|
-
a(?x, i87) :- a(?x, n86).
|
|
298
|
-
a(?x, j87) :- a(?x, n86).
|
|
299
|
-
a(?x, n88) :- a(?x, n87).
|
|
300
|
-
a(?x, i88) :- a(?x, n87).
|
|
301
|
-
a(?x, j88) :- a(?x, n87).
|
|
302
|
-
a(?x, n89) :- a(?x, n88).
|
|
303
|
-
a(?x, i89) :- a(?x, n88).
|
|
304
|
-
a(?x, j89) :- a(?x, n88).
|
|
305
|
-
a(?x, n90) :- a(?x, n89).
|
|
306
|
-
a(?x, i90) :- a(?x, n89).
|
|
307
|
-
a(?x, j90) :- a(?x, n89).
|
|
308
|
-
a(?x, n91) :- a(?x, n90).
|
|
309
|
-
a(?x, i91) :- a(?x, n90).
|
|
310
|
-
a(?x, j91) :- a(?x, n90).
|
|
311
|
-
a(?x, n92) :- a(?x, n91).
|
|
312
|
-
a(?x, i92) :- a(?x, n91).
|
|
313
|
-
a(?x, j92) :- a(?x, n91).
|
|
314
|
-
a(?x, n93) :- a(?x, n92).
|
|
315
|
-
a(?x, i93) :- a(?x, n92).
|
|
316
|
-
a(?x, j93) :- a(?x, n92).
|
|
317
|
-
a(?x, n94) :- a(?x, n93).
|
|
318
|
-
a(?x, i94) :- a(?x, n93).
|
|
319
|
-
a(?x, j94) :- a(?x, n93).
|
|
320
|
-
a(?x, n95) :- a(?x, n94).
|
|
321
|
-
a(?x, i95) :- a(?x, n94).
|
|
322
|
-
a(?x, j95) :- a(?x, n94).
|
|
323
|
-
a(?x, n96) :- a(?x, n95).
|
|
324
|
-
a(?x, i96) :- a(?x, n95).
|
|
325
|
-
a(?x, j96) :- a(?x, n95).
|
|
326
|
-
a(?x, n97) :- a(?x, n96).
|
|
327
|
-
a(?x, i97) :- a(?x, n96).
|
|
328
|
-
a(?x, j97) :- a(?x, n96).
|
|
329
|
-
a(?x, n98) :- a(?x, n97).
|
|
330
|
-
a(?x, i98) :- a(?x, n97).
|
|
331
|
-
a(?x, j98) :- a(?x, n97).
|
|
332
|
-
a(?x, n99) :- a(?x, n98).
|
|
333
|
-
a(?x, i99) :- a(?x, n98).
|
|
334
|
-
a(?x, j99) :- a(?x, n98).
|
|
335
|
-
a(?x, n100) :- a(?x, n99).
|
|
336
|
-
a(?x, i100) :- a(?x, n99).
|
|
337
|
-
a(?x, j100) :- a(?x, n99).
|
|
338
|
-
a(?x, n101) :- a(?x, n100).
|
|
339
|
-
a(?x, i101) :- a(?x, n100).
|
|
340
|
-
a(?x, j101) :- a(?x, n100).
|
|
341
|
-
a(?x, n102) :- a(?x, n101).
|
|
342
|
-
a(?x, i102) :- a(?x, n101).
|
|
343
|
-
a(?x, j102) :- a(?x, n101).
|
|
344
|
-
a(?x, n103) :- a(?x, n102).
|
|
345
|
-
a(?x, i103) :- a(?x, n102).
|
|
346
|
-
a(?x, j103) :- a(?x, n102).
|
|
347
|
-
a(?x, n104) :- a(?x, n103).
|
|
348
|
-
a(?x, i104) :- a(?x, n103).
|
|
349
|
-
a(?x, j104) :- a(?x, n103).
|
|
350
|
-
a(?x, n105) :- a(?x, n104).
|
|
351
|
-
a(?x, i105) :- a(?x, n104).
|
|
352
|
-
a(?x, j105) :- a(?x, n104).
|
|
353
|
-
a(?x, n106) :- a(?x, n105).
|
|
354
|
-
a(?x, i106) :- a(?x, n105).
|
|
355
|
-
a(?x, j106) :- a(?x, n105).
|
|
356
|
-
a(?x, n107) :- a(?x, n106).
|
|
357
|
-
a(?x, i107) :- a(?x, n106).
|
|
358
|
-
a(?x, j107) :- a(?x, n106).
|
|
359
|
-
a(?x, n108) :- a(?x, n107).
|
|
360
|
-
a(?x, i108) :- a(?x, n107).
|
|
361
|
-
a(?x, j108) :- a(?x, n107).
|
|
362
|
-
a(?x, n109) :- a(?x, n108).
|
|
363
|
-
a(?x, i109) :- a(?x, n108).
|
|
364
|
-
a(?x, j109) :- a(?x, n108).
|
|
365
|
-
a(?x, n110) :- a(?x, n109).
|
|
366
|
-
a(?x, i110) :- a(?x, n109).
|
|
367
|
-
a(?x, j110) :- a(?x, n109).
|
|
368
|
-
a(?x, n111) :- a(?x, n110).
|
|
369
|
-
a(?x, i111) :- a(?x, n110).
|
|
370
|
-
a(?x, j111) :- a(?x, n110).
|
|
371
|
-
a(?x, n112) :- a(?x, n111).
|
|
372
|
-
a(?x, i112) :- a(?x, n111).
|
|
373
|
-
a(?x, j112) :- a(?x, n111).
|
|
374
|
-
a(?x, n113) :- a(?x, n112).
|
|
375
|
-
a(?x, i113) :- a(?x, n112).
|
|
376
|
-
a(?x, j113) :- a(?x, n112).
|
|
377
|
-
a(?x, n114) :- a(?x, n113).
|
|
378
|
-
a(?x, i114) :- a(?x, n113).
|
|
379
|
-
a(?x, j114) :- a(?x, n113).
|
|
380
|
-
a(?x, n115) :- a(?x, n114).
|
|
381
|
-
a(?x, i115) :- a(?x, n114).
|
|
382
|
-
a(?x, j115) :- a(?x, n114).
|
|
383
|
-
a(?x, n116) :- a(?x, n115).
|
|
384
|
-
a(?x, i116) :- a(?x, n115).
|
|
385
|
-
a(?x, j116) :- a(?x, n115).
|
|
386
|
-
a(?x, n117) :- a(?x, n116).
|
|
387
|
-
a(?x, i117) :- a(?x, n116).
|
|
388
|
-
a(?x, j117) :- a(?x, n116).
|
|
389
|
-
a(?x, n118) :- a(?x, n117).
|
|
390
|
-
a(?x, i118) :- a(?x, n117).
|
|
391
|
-
a(?x, j118) :- a(?x, n117).
|
|
392
|
-
a(?x, n119) :- a(?x, n118).
|
|
393
|
-
a(?x, i119) :- a(?x, n118).
|
|
394
|
-
a(?x, j119) :- a(?x, n118).
|
|
395
|
-
a(?x, n120) :- a(?x, n119).
|
|
396
|
-
a(?x, i120) :- a(?x, n119).
|
|
397
|
-
a(?x, j120) :- a(?x, n119).
|
|
398
|
-
a(?x, n121) :- a(?x, n120).
|
|
399
|
-
a(?x, i121) :- a(?x, n120).
|
|
400
|
-
a(?x, j121) :- a(?x, n120).
|
|
401
|
-
a(?x, n122) :- a(?x, n121).
|
|
402
|
-
a(?x, i122) :- a(?x, n121).
|
|
403
|
-
a(?x, j122) :- a(?x, n121).
|
|
404
|
-
a(?x, n123) :- a(?x, n122).
|
|
405
|
-
a(?x, i123) :- a(?x, n122).
|
|
406
|
-
a(?x, j123) :- a(?x, n122).
|
|
407
|
-
a(?x, n124) :- a(?x, n123).
|
|
408
|
-
a(?x, i124) :- a(?x, n123).
|
|
409
|
-
a(?x, j124) :- a(?x, n123).
|
|
410
|
-
a(?x, n125) :- a(?x, n124).
|
|
411
|
-
a(?x, i125) :- a(?x, n124).
|
|
412
|
-
a(?x, j125) :- a(?x, n124).
|
|
413
|
-
a(?x, n126) :- a(?x, n125).
|
|
414
|
-
a(?x, i126) :- a(?x, n125).
|
|
415
|
-
a(?x, j126) :- a(?x, n125).
|
|
416
|
-
a(?x, n127) :- a(?x, n126).
|
|
417
|
-
a(?x, i127) :- a(?x, n126).
|
|
418
|
-
a(?x, j127) :- a(?x, n126).
|
|
419
|
-
a(?x, n128) :- a(?x, n127).
|
|
420
|
-
a(?x, i128) :- a(?x, n127).
|
|
421
|
-
a(?x, j128) :- a(?x, n127).
|
|
422
|
-
a(?x, n129) :- a(?x, n128).
|
|
423
|
-
a(?x, i129) :- a(?x, n128).
|
|
424
|
-
a(?x, j129) :- a(?x, n128).
|
|
425
|
-
a(?x, n130) :- a(?x, n129).
|
|
426
|
-
a(?x, i130) :- a(?x, n129).
|
|
427
|
-
a(?x, j130) :- a(?x, n129).
|
|
428
|
-
a(?x, n131) :- a(?x, n130).
|
|
429
|
-
a(?x, i131) :- a(?x, n130).
|
|
430
|
-
a(?x, j131) :- a(?x, n130).
|
|
431
|
-
a(?x, n132) :- a(?x, n131).
|
|
432
|
-
a(?x, i132) :- a(?x, n131).
|
|
433
|
-
a(?x, j132) :- a(?x, n131).
|
|
434
|
-
a(?x, n133) :- a(?x, n132).
|
|
435
|
-
a(?x, i133) :- a(?x, n132).
|
|
436
|
-
a(?x, j133) :- a(?x, n132).
|
|
437
|
-
a(?x, n134) :- a(?x, n133).
|
|
438
|
-
a(?x, i134) :- a(?x, n133).
|
|
439
|
-
a(?x, j134) :- a(?x, n133).
|
|
440
|
-
a(?x, n135) :- a(?x, n134).
|
|
441
|
-
a(?x, i135) :- a(?x, n134).
|
|
442
|
-
a(?x, j135) :- a(?x, n134).
|
|
443
|
-
a(?x, n136) :- a(?x, n135).
|
|
444
|
-
a(?x, i136) :- a(?x, n135).
|
|
445
|
-
a(?x, j136) :- a(?x, n135).
|
|
446
|
-
a(?x, n137) :- a(?x, n136).
|
|
447
|
-
a(?x, i137) :- a(?x, n136).
|
|
448
|
-
a(?x, j137) :- a(?x, n136).
|
|
449
|
-
a(?x, n138) :- a(?x, n137).
|
|
450
|
-
a(?x, i138) :- a(?x, n137).
|
|
451
|
-
a(?x, j138) :- a(?x, n137).
|
|
452
|
-
a(?x, n139) :- a(?x, n138).
|
|
453
|
-
a(?x, i139) :- a(?x, n138).
|
|
454
|
-
a(?x, j139) :- a(?x, n138).
|
|
455
|
-
a(?x, n140) :- a(?x, n139).
|
|
456
|
-
a(?x, i140) :- a(?x, n139).
|
|
457
|
-
a(?x, j140) :- a(?x, n139).
|
|
458
|
-
a(?x, n141) :- a(?x, n140).
|
|
459
|
-
a(?x, i141) :- a(?x, n140).
|
|
460
|
-
a(?x, j141) :- a(?x, n140).
|
|
461
|
-
a(?x, n142) :- a(?x, n141).
|
|
462
|
-
a(?x, i142) :- a(?x, n141).
|
|
463
|
-
a(?x, j142) :- a(?x, n141).
|
|
464
|
-
a(?x, n143) :- a(?x, n142).
|
|
465
|
-
a(?x, i143) :- a(?x, n142).
|
|
466
|
-
a(?x, j143) :- a(?x, n142).
|
|
467
|
-
a(?x, n144) :- a(?x, n143).
|
|
468
|
-
a(?x, i144) :- a(?x, n143).
|
|
469
|
-
a(?x, j144) :- a(?x, n143).
|
|
470
|
-
a(?x, n145) :- a(?x, n144).
|
|
471
|
-
a(?x, i145) :- a(?x, n144).
|
|
472
|
-
a(?x, j145) :- a(?x, n144).
|
|
473
|
-
a(?x, n146) :- a(?x, n145).
|
|
474
|
-
a(?x, i146) :- a(?x, n145).
|
|
475
|
-
a(?x, j146) :- a(?x, n145).
|
|
476
|
-
a(?x, n147) :- a(?x, n146).
|
|
477
|
-
a(?x, i147) :- a(?x, n146).
|
|
478
|
-
a(?x, j147) :- a(?x, n146).
|
|
479
|
-
a(?x, n148) :- a(?x, n147).
|
|
480
|
-
a(?x, i148) :- a(?x, n147).
|
|
481
|
-
a(?x, j148) :- a(?x, n147).
|
|
482
|
-
a(?x, n149) :- a(?x, n148).
|
|
483
|
-
a(?x, i149) :- a(?x, n148).
|
|
484
|
-
a(?x, j149) :- a(?x, n148).
|
|
485
|
-
a(?x, n150) :- a(?x, n149).
|
|
486
|
-
a(?x, i150) :- a(?x, n149).
|
|
487
|
-
a(?x, j150) :- a(?x, n149).
|
|
488
|
-
a(?x, n151) :- a(?x, n150).
|
|
489
|
-
a(?x, i151) :- a(?x, n150).
|
|
490
|
-
a(?x, j151) :- a(?x, n150).
|
|
491
|
-
a(?x, n152) :- a(?x, n151).
|
|
492
|
-
a(?x, i152) :- a(?x, n151).
|
|
493
|
-
a(?x, j152) :- a(?x, n151).
|
|
494
|
-
a(?x, n153) :- a(?x, n152).
|
|
495
|
-
a(?x, i153) :- a(?x, n152).
|
|
496
|
-
a(?x, j153) :- a(?x, n152).
|
|
497
|
-
a(?x, n154) :- a(?x, n153).
|
|
498
|
-
a(?x, i154) :- a(?x, n153).
|
|
499
|
-
a(?x, j154) :- a(?x, n153).
|
|
500
|
-
a(?x, n155) :- a(?x, n154).
|
|
501
|
-
a(?x, i155) :- a(?x, n154).
|
|
502
|
-
a(?x, j155) :- a(?x, n154).
|
|
503
|
-
a(?x, n156) :- a(?x, n155).
|
|
504
|
-
a(?x, i156) :- a(?x, n155).
|
|
505
|
-
a(?x, j156) :- a(?x, n155).
|
|
506
|
-
a(?x, n157) :- a(?x, n156).
|
|
507
|
-
a(?x, i157) :- a(?x, n156).
|
|
508
|
-
a(?x, j157) :- a(?x, n156).
|
|
509
|
-
a(?x, n158) :- a(?x, n157).
|
|
510
|
-
a(?x, i158) :- a(?x, n157).
|
|
511
|
-
a(?x, j158) :- a(?x, n157).
|
|
512
|
-
a(?x, n159) :- a(?x, n158).
|
|
513
|
-
a(?x, i159) :- a(?x, n158).
|
|
514
|
-
a(?x, j159) :- a(?x, n158).
|
|
515
|
-
a(?x, n160) :- a(?x, n159).
|
|
516
|
-
a(?x, i160) :- a(?x, n159).
|
|
517
|
-
a(?x, j160) :- a(?x, n159).
|
|
518
|
-
a(?x, n161) :- a(?x, n160).
|
|
519
|
-
a(?x, i161) :- a(?x, n160).
|
|
520
|
-
a(?x, j161) :- a(?x, n160).
|
|
521
|
-
a(?x, n162) :- a(?x, n161).
|
|
522
|
-
a(?x, i162) :- a(?x, n161).
|
|
523
|
-
a(?x, j162) :- a(?x, n161).
|
|
524
|
-
a(?x, n163) :- a(?x, n162).
|
|
525
|
-
a(?x, i163) :- a(?x, n162).
|
|
526
|
-
a(?x, j163) :- a(?x, n162).
|
|
527
|
-
a(?x, n164) :- a(?x, n163).
|
|
528
|
-
a(?x, i164) :- a(?x, n163).
|
|
529
|
-
a(?x, j164) :- a(?x, n163).
|
|
530
|
-
a(?x, n165) :- a(?x, n164).
|
|
531
|
-
a(?x, i165) :- a(?x, n164).
|
|
532
|
-
a(?x, j165) :- a(?x, n164).
|
|
533
|
-
a(?x, n166) :- a(?x, n165).
|
|
534
|
-
a(?x, i166) :- a(?x, n165).
|
|
535
|
-
a(?x, j166) :- a(?x, n165).
|
|
536
|
-
a(?x, n167) :- a(?x, n166).
|
|
537
|
-
a(?x, i167) :- a(?x, n166).
|
|
538
|
-
a(?x, j167) :- a(?x, n166).
|
|
539
|
-
a(?x, n168) :- a(?x, n167).
|
|
540
|
-
a(?x, i168) :- a(?x, n167).
|
|
541
|
-
a(?x, j168) :- a(?x, n167).
|
|
542
|
-
a(?x, n169) :- a(?x, n168).
|
|
543
|
-
a(?x, i169) :- a(?x, n168).
|
|
544
|
-
a(?x, j169) :- a(?x, n168).
|
|
545
|
-
a(?x, n170) :- a(?x, n169).
|
|
546
|
-
a(?x, i170) :- a(?x, n169).
|
|
547
|
-
a(?x, j170) :- a(?x, n169).
|
|
548
|
-
a(?x, n171) :- a(?x, n170).
|
|
549
|
-
a(?x, i171) :- a(?x, n170).
|
|
550
|
-
a(?x, j171) :- a(?x, n170).
|
|
551
|
-
a(?x, n172) :- a(?x, n171).
|
|
552
|
-
a(?x, i172) :- a(?x, n171).
|
|
553
|
-
a(?x, j172) :- a(?x, n171).
|
|
554
|
-
a(?x, n173) :- a(?x, n172).
|
|
555
|
-
a(?x, i173) :- a(?x, n172).
|
|
556
|
-
a(?x, j173) :- a(?x, n172).
|
|
557
|
-
a(?x, n174) :- a(?x, n173).
|
|
558
|
-
a(?x, i174) :- a(?x, n173).
|
|
559
|
-
a(?x, j174) :- a(?x, n173).
|
|
560
|
-
a(?x, n175) :- a(?x, n174).
|
|
561
|
-
a(?x, i175) :- a(?x, n174).
|
|
562
|
-
a(?x, j175) :- a(?x, n174).
|
|
563
|
-
a(?x, n176) :- a(?x, n175).
|
|
564
|
-
a(?x, i176) :- a(?x, n175).
|
|
565
|
-
a(?x, j176) :- a(?x, n175).
|
|
566
|
-
a(?x, n177) :- a(?x, n176).
|
|
567
|
-
a(?x, i177) :- a(?x, n176).
|
|
568
|
-
a(?x, j177) :- a(?x, n176).
|
|
569
|
-
a(?x, n178) :- a(?x, n177).
|
|
570
|
-
a(?x, i178) :- a(?x, n177).
|
|
571
|
-
a(?x, j178) :- a(?x, n177).
|
|
572
|
-
a(?x, n179) :- a(?x, n178).
|
|
573
|
-
a(?x, i179) :- a(?x, n178).
|
|
574
|
-
a(?x, j179) :- a(?x, n178).
|
|
575
|
-
a(?x, n180) :- a(?x, n179).
|
|
576
|
-
a(?x, i180) :- a(?x, n179).
|
|
577
|
-
a(?x, j180) :- a(?x, n179).
|
|
578
|
-
a(?x, n181) :- a(?x, n180).
|
|
579
|
-
a(?x, i181) :- a(?x, n180).
|
|
580
|
-
a(?x, j181) :- a(?x, n180).
|
|
581
|
-
a(?x, n182) :- a(?x, n181).
|
|
582
|
-
a(?x, i182) :- a(?x, n181).
|
|
583
|
-
a(?x, j182) :- a(?x, n181).
|
|
584
|
-
a(?x, n183) :- a(?x, n182).
|
|
585
|
-
a(?x, i183) :- a(?x, n182).
|
|
586
|
-
a(?x, j183) :- a(?x, n182).
|
|
587
|
-
a(?x, n184) :- a(?x, n183).
|
|
588
|
-
a(?x, i184) :- a(?x, n183).
|
|
589
|
-
a(?x, j184) :- a(?x, n183).
|
|
590
|
-
a(?x, n185) :- a(?x, n184).
|
|
591
|
-
a(?x, i185) :- a(?x, n184).
|
|
592
|
-
a(?x, j185) :- a(?x, n184).
|
|
593
|
-
a(?x, n186) :- a(?x, n185).
|
|
594
|
-
a(?x, i186) :- a(?x, n185).
|
|
595
|
-
a(?x, j186) :- a(?x, n185).
|
|
596
|
-
a(?x, n187) :- a(?x, n186).
|
|
597
|
-
a(?x, i187) :- a(?x, n186).
|
|
598
|
-
a(?x, j187) :- a(?x, n186).
|
|
599
|
-
a(?x, n188) :- a(?x, n187).
|
|
600
|
-
a(?x, i188) :- a(?x, n187).
|
|
601
|
-
a(?x, j188) :- a(?x, n187).
|
|
602
|
-
a(?x, n189) :- a(?x, n188).
|
|
603
|
-
a(?x, i189) :- a(?x, n188).
|
|
604
|
-
a(?x, j189) :- a(?x, n188).
|
|
605
|
-
a(?x, n190) :- a(?x, n189).
|
|
606
|
-
a(?x, i190) :- a(?x, n189).
|
|
607
|
-
a(?x, j190) :- a(?x, n189).
|
|
608
|
-
a(?x, n191) :- a(?x, n190).
|
|
609
|
-
a(?x, i191) :- a(?x, n190).
|
|
610
|
-
a(?x, j191) :- a(?x, n190).
|
|
611
|
-
a(?x, n192) :- a(?x, n191).
|
|
612
|
-
a(?x, i192) :- a(?x, n191).
|
|
613
|
-
a(?x, j192) :- a(?x, n191).
|
|
614
|
-
a(?x, n193) :- a(?x, n192).
|
|
615
|
-
a(?x, i193) :- a(?x, n192).
|
|
616
|
-
a(?x, j193) :- a(?x, n192).
|
|
617
|
-
a(?x, n194) :- a(?x, n193).
|
|
618
|
-
a(?x, i194) :- a(?x, n193).
|
|
619
|
-
a(?x, j194) :- a(?x, n193).
|
|
620
|
-
a(?x, n195) :- a(?x, n194).
|
|
621
|
-
a(?x, i195) :- a(?x, n194).
|
|
622
|
-
a(?x, j195) :- a(?x, n194).
|
|
623
|
-
a(?x, n196) :- a(?x, n195).
|
|
624
|
-
a(?x, i196) :- a(?x, n195).
|
|
625
|
-
a(?x, j196) :- a(?x, n195).
|
|
626
|
-
a(?x, n197) :- a(?x, n196).
|
|
627
|
-
a(?x, i197) :- a(?x, n196).
|
|
628
|
-
a(?x, j197) :- a(?x, n196).
|
|
629
|
-
a(?x, n198) :- a(?x, n197).
|
|
630
|
-
a(?x, i198) :- a(?x, n197).
|
|
631
|
-
a(?x, j198) :- a(?x, n197).
|
|
632
|
-
a(?x, n199) :- a(?x, n198).
|
|
633
|
-
a(?x, i199) :- a(?x, n198).
|
|
634
|
-
a(?x, j199) :- a(?x, n198).
|
|
635
|
-
a(?x, n200) :- a(?x, n199).
|
|
636
|
-
a(?x, i200) :- a(?x, n199).
|
|
637
|
-
a(?x, j200) :- a(?x, n199).
|
|
638
|
-
a(?x, n201) :- a(?x, n200).
|
|
639
|
-
a(?x, i201) :- a(?x, n200).
|
|
640
|
-
a(?x, j201) :- a(?x, n200).
|
|
641
|
-
a(?x, n202) :- a(?x, n201).
|
|
642
|
-
a(?x, i202) :- a(?x, n201).
|
|
643
|
-
a(?x, j202) :- a(?x, n201).
|
|
644
|
-
a(?x, n203) :- a(?x, n202).
|
|
645
|
-
a(?x, i203) :- a(?x, n202).
|
|
646
|
-
a(?x, j203) :- a(?x, n202).
|
|
647
|
-
a(?x, n204) :- a(?x, n203).
|
|
648
|
-
a(?x, i204) :- a(?x, n203).
|
|
649
|
-
a(?x, j204) :- a(?x, n203).
|
|
650
|
-
a(?x, n205) :- a(?x, n204).
|
|
651
|
-
a(?x, i205) :- a(?x, n204).
|
|
652
|
-
a(?x, j205) :- a(?x, n204).
|
|
653
|
-
a(?x, n206) :- a(?x, n205).
|
|
654
|
-
a(?x, i206) :- a(?x, n205).
|
|
655
|
-
a(?x, j206) :- a(?x, n205).
|
|
656
|
-
a(?x, n207) :- a(?x, n206).
|
|
657
|
-
a(?x, i207) :- a(?x, n206).
|
|
658
|
-
a(?x, j207) :- a(?x, n206).
|
|
659
|
-
a(?x, n208) :- a(?x, n207).
|
|
660
|
-
a(?x, i208) :- a(?x, n207).
|
|
661
|
-
a(?x, j208) :- a(?x, n207).
|
|
662
|
-
a(?x, n209) :- a(?x, n208).
|
|
663
|
-
a(?x, i209) :- a(?x, n208).
|
|
664
|
-
a(?x, j209) :- a(?x, n208).
|
|
665
|
-
a(?x, n210) :- a(?x, n209).
|
|
666
|
-
a(?x, i210) :- a(?x, n209).
|
|
667
|
-
a(?x, j210) :- a(?x, n209).
|
|
668
|
-
a(?x, n211) :- a(?x, n210).
|
|
669
|
-
a(?x, i211) :- a(?x, n210).
|
|
670
|
-
a(?x, j211) :- a(?x, n210).
|
|
671
|
-
a(?x, n212) :- a(?x, n211).
|
|
672
|
-
a(?x, i212) :- a(?x, n211).
|
|
673
|
-
a(?x, j212) :- a(?x, n211).
|
|
674
|
-
a(?x, n213) :- a(?x, n212).
|
|
675
|
-
a(?x, i213) :- a(?x, n212).
|
|
676
|
-
a(?x, j213) :- a(?x, n212).
|
|
677
|
-
a(?x, n214) :- a(?x, n213).
|
|
678
|
-
a(?x, i214) :- a(?x, n213).
|
|
679
|
-
a(?x, j214) :- a(?x, n213).
|
|
680
|
-
a(?x, n215) :- a(?x, n214).
|
|
681
|
-
a(?x, i215) :- a(?x, n214).
|
|
682
|
-
a(?x, j215) :- a(?x, n214).
|
|
683
|
-
a(?x, n216) :- a(?x, n215).
|
|
684
|
-
a(?x, i216) :- a(?x, n215).
|
|
685
|
-
a(?x, j216) :- a(?x, n215).
|
|
686
|
-
a(?x, n217) :- a(?x, n216).
|
|
687
|
-
a(?x, i217) :- a(?x, n216).
|
|
688
|
-
a(?x, j217) :- a(?x, n216).
|
|
689
|
-
a(?x, n218) :- a(?x, n217).
|
|
690
|
-
a(?x, i218) :- a(?x, n217).
|
|
691
|
-
a(?x, j218) :- a(?x, n217).
|
|
692
|
-
a(?x, n219) :- a(?x, n218).
|
|
693
|
-
a(?x, i219) :- a(?x, n218).
|
|
694
|
-
a(?x, j219) :- a(?x, n218).
|
|
695
|
-
a(?x, n220) :- a(?x, n219).
|
|
696
|
-
a(?x, i220) :- a(?x, n219).
|
|
697
|
-
a(?x, j220) :- a(?x, n219).
|
|
698
|
-
a(?x, n221) :- a(?x, n220).
|
|
699
|
-
a(?x, i221) :- a(?x, n220).
|
|
700
|
-
a(?x, j221) :- a(?x, n220).
|
|
701
|
-
a(?x, n222) :- a(?x, n221).
|
|
702
|
-
a(?x, i222) :- a(?x, n221).
|
|
703
|
-
a(?x, j222) :- a(?x, n221).
|
|
704
|
-
a(?x, n223) :- a(?x, n222).
|
|
705
|
-
a(?x, i223) :- a(?x, n222).
|
|
706
|
-
a(?x, j223) :- a(?x, n222).
|
|
707
|
-
a(?x, n224) :- a(?x, n223).
|
|
708
|
-
a(?x, i224) :- a(?x, n223).
|
|
709
|
-
a(?x, j224) :- a(?x, n223).
|
|
710
|
-
a(?x, n225) :- a(?x, n224).
|
|
711
|
-
a(?x, i225) :- a(?x, n224).
|
|
712
|
-
a(?x, j225) :- a(?x, n224).
|
|
713
|
-
a(?x, n226) :- a(?x, n225).
|
|
714
|
-
a(?x, i226) :- a(?x, n225).
|
|
715
|
-
a(?x, j226) :- a(?x, n225).
|
|
716
|
-
a(?x, n227) :- a(?x, n226).
|
|
717
|
-
a(?x, i227) :- a(?x, n226).
|
|
718
|
-
a(?x, j227) :- a(?x, n226).
|
|
719
|
-
a(?x, n228) :- a(?x, n227).
|
|
720
|
-
a(?x, i228) :- a(?x, n227).
|
|
721
|
-
a(?x, j228) :- a(?x, n227).
|
|
722
|
-
a(?x, n229) :- a(?x, n228).
|
|
723
|
-
a(?x, i229) :- a(?x, n228).
|
|
724
|
-
a(?x, j229) :- a(?x, n228).
|
|
725
|
-
a(?x, n230) :- a(?x, n229).
|
|
726
|
-
a(?x, i230) :- a(?x, n229).
|
|
727
|
-
a(?x, j230) :- a(?x, n229).
|
|
728
|
-
a(?x, n231) :- a(?x, n230).
|
|
729
|
-
a(?x, i231) :- a(?x, n230).
|
|
730
|
-
a(?x, j231) :- a(?x, n230).
|
|
731
|
-
a(?x, n232) :- a(?x, n231).
|
|
732
|
-
a(?x, i232) :- a(?x, n231).
|
|
733
|
-
a(?x, j232) :- a(?x, n231).
|
|
734
|
-
a(?x, n233) :- a(?x, n232).
|
|
735
|
-
a(?x, i233) :- a(?x, n232).
|
|
736
|
-
a(?x, j233) :- a(?x, n232).
|
|
737
|
-
a(?x, n234) :- a(?x, n233).
|
|
738
|
-
a(?x, i234) :- a(?x, n233).
|
|
739
|
-
a(?x, j234) :- a(?x, n233).
|
|
740
|
-
a(?x, n235) :- a(?x, n234).
|
|
741
|
-
a(?x, i235) :- a(?x, n234).
|
|
742
|
-
a(?x, j235) :- a(?x, n234).
|
|
743
|
-
a(?x, n236) :- a(?x, n235).
|
|
744
|
-
a(?x, i236) :- a(?x, n235).
|
|
745
|
-
a(?x, j236) :- a(?x, n235).
|
|
746
|
-
a(?x, n237) :- a(?x, n236).
|
|
747
|
-
a(?x, i237) :- a(?x, n236).
|
|
748
|
-
a(?x, j237) :- a(?x, n236).
|
|
749
|
-
a(?x, n238) :- a(?x, n237).
|
|
750
|
-
a(?x, i238) :- a(?x, n237).
|
|
751
|
-
a(?x, j238) :- a(?x, n237).
|
|
752
|
-
a(?x, n239) :- a(?x, n238).
|
|
753
|
-
a(?x, i239) :- a(?x, n238).
|
|
754
|
-
a(?x, j239) :- a(?x, n238).
|
|
755
|
-
a(?x, n240) :- a(?x, n239).
|
|
756
|
-
a(?x, i240) :- a(?x, n239).
|
|
757
|
-
a(?x, j240) :- a(?x, n239).
|
|
758
|
-
a(?x, n241) :- a(?x, n240).
|
|
759
|
-
a(?x, i241) :- a(?x, n240).
|
|
760
|
-
a(?x, j241) :- a(?x, n240).
|
|
761
|
-
a(?x, n242) :- a(?x, n241).
|
|
762
|
-
a(?x, i242) :- a(?x, n241).
|
|
763
|
-
a(?x, j242) :- a(?x, n241).
|
|
764
|
-
a(?x, n243) :- a(?x, n242).
|
|
765
|
-
a(?x, i243) :- a(?x, n242).
|
|
766
|
-
a(?x, j243) :- a(?x, n242).
|
|
767
|
-
a(?x, n244) :- a(?x, n243).
|
|
768
|
-
a(?x, i244) :- a(?x, n243).
|
|
769
|
-
a(?x, j244) :- a(?x, n243).
|
|
770
|
-
a(?x, n245) :- a(?x, n244).
|
|
771
|
-
a(?x, i245) :- a(?x, n244).
|
|
772
|
-
a(?x, j245) :- a(?x, n244).
|
|
773
|
-
a(?x, n246) :- a(?x, n245).
|
|
774
|
-
a(?x, i246) :- a(?x, n245).
|
|
775
|
-
a(?x, j246) :- a(?x, n245).
|
|
776
|
-
a(?x, n247) :- a(?x, n246).
|
|
777
|
-
a(?x, i247) :- a(?x, n246).
|
|
778
|
-
a(?x, j247) :- a(?x, n246).
|
|
779
|
-
a(?x, n248) :- a(?x, n247).
|
|
780
|
-
a(?x, i248) :- a(?x, n247).
|
|
781
|
-
a(?x, j248) :- a(?x, n247).
|
|
782
|
-
a(?x, n249) :- a(?x, n248).
|
|
783
|
-
a(?x, i249) :- a(?x, n248).
|
|
784
|
-
a(?x, j249) :- a(?x, n248).
|
|
785
|
-
a(?x, n250) :- a(?x, n249).
|
|
786
|
-
a(?x, i250) :- a(?x, n249).
|
|
787
|
-
a(?x, j250) :- a(?x, n249).
|
|
788
|
-
a(?x, n251) :- a(?x, n250).
|
|
789
|
-
a(?x, i251) :- a(?x, n250).
|
|
790
|
-
a(?x, j251) :- a(?x, n250).
|
|
791
|
-
a(?x, n252) :- a(?x, n251).
|
|
792
|
-
a(?x, i252) :- a(?x, n251).
|
|
793
|
-
a(?x, j252) :- a(?x, n251).
|
|
794
|
-
a(?x, n253) :- a(?x, n252).
|
|
795
|
-
a(?x, i253) :- a(?x, n252).
|
|
796
|
-
a(?x, j253) :- a(?x, n252).
|
|
797
|
-
a(?x, n254) :- a(?x, n253).
|
|
798
|
-
a(?x, i254) :- a(?x, n253).
|
|
799
|
-
a(?x, j254) :- a(?x, n253).
|
|
800
|
-
a(?x, n255) :- a(?x, n254).
|
|
801
|
-
a(?x, i255) :- a(?x, n254).
|
|
802
|
-
a(?x, j255) :- a(?x, n254).
|
|
803
|
-
a(?x, n256) :- a(?x, n255).
|
|
804
|
-
a(?x, i256) :- a(?x, n255).
|
|
805
|
-
a(?x, j256) :- a(?x, n255).
|
|
806
|
-
a(?x, n257) :- a(?x, n256).
|
|
807
|
-
a(?x, i257) :- a(?x, n256).
|
|
808
|
-
a(?x, j257) :- a(?x, n256).
|
|
809
|
-
a(?x, n258) :- a(?x, n257).
|
|
810
|
-
a(?x, i258) :- a(?x, n257).
|
|
811
|
-
a(?x, j258) :- a(?x, n257).
|
|
812
|
-
a(?x, n259) :- a(?x, n258).
|
|
813
|
-
a(?x, i259) :- a(?x, n258).
|
|
814
|
-
a(?x, j259) :- a(?x, n258).
|
|
815
|
-
a(?x, n260) :- a(?x, n259).
|
|
816
|
-
a(?x, i260) :- a(?x, n259).
|
|
817
|
-
a(?x, j260) :- a(?x, n259).
|
|
818
|
-
a(?x, n261) :- a(?x, n260).
|
|
819
|
-
a(?x, i261) :- a(?x, n260).
|
|
820
|
-
a(?x, j261) :- a(?x, n260).
|
|
821
|
-
a(?x, n262) :- a(?x, n261).
|
|
822
|
-
a(?x, i262) :- a(?x, n261).
|
|
823
|
-
a(?x, j262) :- a(?x, n261).
|
|
824
|
-
a(?x, n263) :- a(?x, n262).
|
|
825
|
-
a(?x, i263) :- a(?x, n262).
|
|
826
|
-
a(?x, j263) :- a(?x, n262).
|
|
827
|
-
a(?x, n264) :- a(?x, n263).
|
|
828
|
-
a(?x, i264) :- a(?x, n263).
|
|
829
|
-
a(?x, j264) :- a(?x, n263).
|
|
830
|
-
a(?x, n265) :- a(?x, n264).
|
|
831
|
-
a(?x, i265) :- a(?x, n264).
|
|
832
|
-
a(?x, j265) :- a(?x, n264).
|
|
833
|
-
a(?x, n266) :- a(?x, n265).
|
|
834
|
-
a(?x, i266) :- a(?x, n265).
|
|
835
|
-
a(?x, j266) :- a(?x, n265).
|
|
836
|
-
a(?x, n267) :- a(?x, n266).
|
|
837
|
-
a(?x, i267) :- a(?x, n266).
|
|
838
|
-
a(?x, j267) :- a(?x, n266).
|
|
839
|
-
a(?x, n268) :- a(?x, n267).
|
|
840
|
-
a(?x, i268) :- a(?x, n267).
|
|
841
|
-
a(?x, j268) :- a(?x, n267).
|
|
842
|
-
a(?x, n269) :- a(?x, n268).
|
|
843
|
-
a(?x, i269) :- a(?x, n268).
|
|
844
|
-
a(?x, j269) :- a(?x, n268).
|
|
845
|
-
a(?x, n270) :- a(?x, n269).
|
|
846
|
-
a(?x, i270) :- a(?x, n269).
|
|
847
|
-
a(?x, j270) :- a(?x, n269).
|
|
848
|
-
a(?x, n271) :- a(?x, n270).
|
|
849
|
-
a(?x, i271) :- a(?x, n270).
|
|
850
|
-
a(?x, j271) :- a(?x, n270).
|
|
851
|
-
a(?x, n272) :- a(?x, n271).
|
|
852
|
-
a(?x, i272) :- a(?x, n271).
|
|
853
|
-
a(?x, j272) :- a(?x, n271).
|
|
854
|
-
a(?x, n273) :- a(?x, n272).
|
|
855
|
-
a(?x, i273) :- a(?x, n272).
|
|
856
|
-
a(?x, j273) :- a(?x, n272).
|
|
857
|
-
a(?x, n274) :- a(?x, n273).
|
|
858
|
-
a(?x, i274) :- a(?x, n273).
|
|
859
|
-
a(?x, j274) :- a(?x, n273).
|
|
860
|
-
a(?x, n275) :- a(?x, n274).
|
|
861
|
-
a(?x, i275) :- a(?x, n274).
|
|
862
|
-
a(?x, j275) :- a(?x, n274).
|
|
863
|
-
a(?x, n276) :- a(?x, n275).
|
|
864
|
-
a(?x, i276) :- a(?x, n275).
|
|
865
|
-
a(?x, j276) :- a(?x, n275).
|
|
866
|
-
a(?x, n277) :- a(?x, n276).
|
|
867
|
-
a(?x, i277) :- a(?x, n276).
|
|
868
|
-
a(?x, j277) :- a(?x, n276).
|
|
869
|
-
a(?x, n278) :- a(?x, n277).
|
|
870
|
-
a(?x, i278) :- a(?x, n277).
|
|
871
|
-
a(?x, j278) :- a(?x, n277).
|
|
872
|
-
a(?x, n279) :- a(?x, n278).
|
|
873
|
-
a(?x, i279) :- a(?x, n278).
|
|
874
|
-
a(?x, j279) :- a(?x, n278).
|
|
875
|
-
a(?x, n280) :- a(?x, n279).
|
|
876
|
-
a(?x, i280) :- a(?x, n279).
|
|
877
|
-
a(?x, j280) :- a(?x, n279).
|
|
878
|
-
a(?x, n281) :- a(?x, n280).
|
|
879
|
-
a(?x, i281) :- a(?x, n280).
|
|
880
|
-
a(?x, j281) :- a(?x, n280).
|
|
881
|
-
a(?x, n282) :- a(?x, n281).
|
|
882
|
-
a(?x, i282) :- a(?x, n281).
|
|
883
|
-
a(?x, j282) :- a(?x, n281).
|
|
884
|
-
a(?x, n283) :- a(?x, n282).
|
|
885
|
-
a(?x, i283) :- a(?x, n282).
|
|
886
|
-
a(?x, j283) :- a(?x, n282).
|
|
887
|
-
a(?x, n284) :- a(?x, n283).
|
|
888
|
-
a(?x, i284) :- a(?x, n283).
|
|
889
|
-
a(?x, j284) :- a(?x, n283).
|
|
890
|
-
a(?x, n285) :- a(?x, n284).
|
|
891
|
-
a(?x, i285) :- a(?x, n284).
|
|
892
|
-
a(?x, j285) :- a(?x, n284).
|
|
893
|
-
a(?x, n286) :- a(?x, n285).
|
|
894
|
-
a(?x, i286) :- a(?x, n285).
|
|
895
|
-
a(?x, j286) :- a(?x, n285).
|
|
896
|
-
a(?x, n287) :- a(?x, n286).
|
|
897
|
-
a(?x, i287) :- a(?x, n286).
|
|
898
|
-
a(?x, j287) :- a(?x, n286).
|
|
899
|
-
a(?x, n288) :- a(?x, n287).
|
|
900
|
-
a(?x, i288) :- a(?x, n287).
|
|
901
|
-
a(?x, j288) :- a(?x, n287).
|
|
902
|
-
a(?x, n289) :- a(?x, n288).
|
|
903
|
-
a(?x, i289) :- a(?x, n288).
|
|
904
|
-
a(?x, j289) :- a(?x, n288).
|
|
905
|
-
a(?x, n290) :- a(?x, n289).
|
|
906
|
-
a(?x, i290) :- a(?x, n289).
|
|
907
|
-
a(?x, j290) :- a(?x, n289).
|
|
908
|
-
a(?x, n291) :- a(?x, n290).
|
|
909
|
-
a(?x, i291) :- a(?x, n290).
|
|
910
|
-
a(?x, j291) :- a(?x, n290).
|
|
911
|
-
a(?x, n292) :- a(?x, n291).
|
|
912
|
-
a(?x, i292) :- a(?x, n291).
|
|
913
|
-
a(?x, j292) :- a(?x, n291).
|
|
914
|
-
a(?x, n293) :- a(?x, n292).
|
|
915
|
-
a(?x, i293) :- a(?x, n292).
|
|
916
|
-
a(?x, j293) :- a(?x, n292).
|
|
917
|
-
a(?x, n294) :- a(?x, n293).
|
|
918
|
-
a(?x, i294) :- a(?x, n293).
|
|
919
|
-
a(?x, j294) :- a(?x, n293).
|
|
920
|
-
a(?x, n295) :- a(?x, n294).
|
|
921
|
-
a(?x, i295) :- a(?x, n294).
|
|
922
|
-
a(?x, j295) :- a(?x, n294).
|
|
923
|
-
a(?x, n296) :- a(?x, n295).
|
|
924
|
-
a(?x, i296) :- a(?x, n295).
|
|
925
|
-
a(?x, j296) :- a(?x, n295).
|
|
926
|
-
a(?x, n297) :- a(?x, n296).
|
|
927
|
-
a(?x, i297) :- a(?x, n296).
|
|
928
|
-
a(?x, j297) :- a(?x, n296).
|
|
929
|
-
a(?x, n298) :- a(?x, n297).
|
|
930
|
-
a(?x, i298) :- a(?x, n297).
|
|
931
|
-
a(?x, j298) :- a(?x, n297).
|
|
932
|
-
a(?x, n299) :- a(?x, n298).
|
|
933
|
-
a(?x, i299) :- a(?x, n298).
|
|
934
|
-
a(?x, j299) :- a(?x, n298).
|
|
935
|
-
a(?x, n300) :- a(?x, n299).
|
|
936
|
-
a(?x, i300) :- a(?x, n299).
|
|
937
|
-
a(?x, j300) :- a(?x, n299).
|
|
938
|
-
a(?x, n301) :- a(?x, n300).
|
|
939
|
-
a(?x, i301) :- a(?x, n300).
|
|
940
|
-
a(?x, j301) :- a(?x, n300).
|
|
941
|
-
a(?x, n302) :- a(?x, n301).
|
|
942
|
-
a(?x, i302) :- a(?x, n301).
|
|
943
|
-
a(?x, j302) :- a(?x, n301).
|
|
944
|
-
a(?x, n303) :- a(?x, n302).
|
|
945
|
-
a(?x, i303) :- a(?x, n302).
|
|
946
|
-
a(?x, j303) :- a(?x, n302).
|
|
947
|
-
a(?x, n304) :- a(?x, n303).
|
|
948
|
-
a(?x, i304) :- a(?x, n303).
|
|
949
|
-
a(?x, j304) :- a(?x, n303).
|
|
950
|
-
a(?x, n305) :- a(?x, n304).
|
|
951
|
-
a(?x, i305) :- a(?x, n304).
|
|
952
|
-
a(?x, j305) :- a(?x, n304).
|
|
953
|
-
a(?x, n306) :- a(?x, n305).
|
|
954
|
-
a(?x, i306) :- a(?x, n305).
|
|
955
|
-
a(?x, j306) :- a(?x, n305).
|
|
956
|
-
a(?x, n307) :- a(?x, n306).
|
|
957
|
-
a(?x, i307) :- a(?x, n306).
|
|
958
|
-
a(?x, j307) :- a(?x, n306).
|
|
959
|
-
a(?x, n308) :- a(?x, n307).
|
|
960
|
-
a(?x, i308) :- a(?x, n307).
|
|
961
|
-
a(?x, j308) :- a(?x, n307).
|
|
962
|
-
a(?x, n309) :- a(?x, n308).
|
|
963
|
-
a(?x, i309) :- a(?x, n308).
|
|
964
|
-
a(?x, j309) :- a(?x, n308).
|
|
965
|
-
a(?x, n310) :- a(?x, n309).
|
|
966
|
-
a(?x, i310) :- a(?x, n309).
|
|
967
|
-
a(?x, j310) :- a(?x, n309).
|
|
968
|
-
a(?x, n311) :- a(?x, n310).
|
|
969
|
-
a(?x, i311) :- a(?x, n310).
|
|
970
|
-
a(?x, j311) :- a(?x, n310).
|
|
971
|
-
a(?x, n312) :- a(?x, n311).
|
|
972
|
-
a(?x, i312) :- a(?x, n311).
|
|
973
|
-
a(?x, j312) :- a(?x, n311).
|
|
974
|
-
a(?x, n313) :- a(?x, n312).
|
|
975
|
-
a(?x, i313) :- a(?x, n312).
|
|
976
|
-
a(?x, j313) :- a(?x, n312).
|
|
977
|
-
a(?x, n314) :- a(?x, n313).
|
|
978
|
-
a(?x, i314) :- a(?x, n313).
|
|
979
|
-
a(?x, j314) :- a(?x, n313).
|
|
980
|
-
a(?x, n315) :- a(?x, n314).
|
|
981
|
-
a(?x, i315) :- a(?x, n314).
|
|
982
|
-
a(?x, j315) :- a(?x, n314).
|
|
983
|
-
a(?x, n316) :- a(?x, n315).
|
|
984
|
-
a(?x, i316) :- a(?x, n315).
|
|
985
|
-
a(?x, j316) :- a(?x, n315).
|
|
986
|
-
a(?x, n317) :- a(?x, n316).
|
|
987
|
-
a(?x, i317) :- a(?x, n316).
|
|
988
|
-
a(?x, j317) :- a(?x, n316).
|
|
989
|
-
a(?x, n318) :- a(?x, n317).
|
|
990
|
-
a(?x, i318) :- a(?x, n317).
|
|
991
|
-
a(?x, j318) :- a(?x, n317).
|
|
992
|
-
a(?x, n319) :- a(?x, n318).
|
|
993
|
-
a(?x, i319) :- a(?x, n318).
|
|
994
|
-
a(?x, j319) :- a(?x, n318).
|
|
995
|
-
a(?x, n320) :- a(?x, n319).
|
|
996
|
-
a(?x, i320) :- a(?x, n319).
|
|
997
|
-
a(?x, j320) :- a(?x, n319).
|
|
998
|
-
a(?x, n321) :- a(?x, n320).
|
|
999
|
-
a(?x, i321) :- a(?x, n320).
|
|
1000
|
-
a(?x, j321) :- a(?x, n320).
|
|
1001
|
-
a(?x, n322) :- a(?x, n321).
|
|
1002
|
-
a(?x, i322) :- a(?x, n321).
|
|
1003
|
-
a(?x, j322) :- a(?x, n321).
|
|
1004
|
-
a(?x, n323) :- a(?x, n322).
|
|
1005
|
-
a(?x, i323) :- a(?x, n322).
|
|
1006
|
-
a(?x, j323) :- a(?x, n322).
|
|
1007
|
-
a(?x, n324) :- a(?x, n323).
|
|
1008
|
-
a(?x, i324) :- a(?x, n323).
|
|
1009
|
-
a(?x, j324) :- a(?x, n323).
|
|
1010
|
-
a(?x, n325) :- a(?x, n324).
|
|
1011
|
-
a(?x, i325) :- a(?x, n324).
|
|
1012
|
-
a(?x, j325) :- a(?x, n324).
|
|
1013
|
-
a(?x, n326) :- a(?x, n325).
|
|
1014
|
-
a(?x, i326) :- a(?x, n325).
|
|
1015
|
-
a(?x, j326) :- a(?x, n325).
|
|
1016
|
-
a(?x, n327) :- a(?x, n326).
|
|
1017
|
-
a(?x, i327) :- a(?x, n326).
|
|
1018
|
-
a(?x, j327) :- a(?x, n326).
|
|
1019
|
-
a(?x, n328) :- a(?x, n327).
|
|
1020
|
-
a(?x, i328) :- a(?x, n327).
|
|
1021
|
-
a(?x, j328) :- a(?x, n327).
|
|
1022
|
-
a(?x, n329) :- a(?x, n328).
|
|
1023
|
-
a(?x, i329) :- a(?x, n328).
|
|
1024
|
-
a(?x, j329) :- a(?x, n328).
|
|
1025
|
-
a(?x, n330) :- a(?x, n329).
|
|
1026
|
-
a(?x, i330) :- a(?x, n329).
|
|
1027
|
-
a(?x, j330) :- a(?x, n329).
|
|
1028
|
-
a(?x, n331) :- a(?x, n330).
|
|
1029
|
-
a(?x, i331) :- a(?x, n330).
|
|
1030
|
-
a(?x, j331) :- a(?x, n330).
|
|
1031
|
-
a(?x, n332) :- a(?x, n331).
|
|
1032
|
-
a(?x, i332) :- a(?x, n331).
|
|
1033
|
-
a(?x, j332) :- a(?x, n331).
|
|
1034
|
-
a(?x, n333) :- a(?x, n332).
|
|
1035
|
-
a(?x, i333) :- a(?x, n332).
|
|
1036
|
-
a(?x, j333) :- a(?x, n332).
|
|
1037
|
-
a(?x, n334) :- a(?x, n333).
|
|
1038
|
-
a(?x, i334) :- a(?x, n333).
|
|
1039
|
-
a(?x, j334) :- a(?x, n333).
|
|
1040
|
-
a(?x, n335) :- a(?x, n334).
|
|
1041
|
-
a(?x, i335) :- a(?x, n334).
|
|
1042
|
-
a(?x, j335) :- a(?x, n334).
|
|
1043
|
-
a(?x, n336) :- a(?x, n335).
|
|
1044
|
-
a(?x, i336) :- a(?x, n335).
|
|
1045
|
-
a(?x, j336) :- a(?x, n335).
|
|
1046
|
-
a(?x, n337) :- a(?x, n336).
|
|
1047
|
-
a(?x, i337) :- a(?x, n336).
|
|
1048
|
-
a(?x, j337) :- a(?x, n336).
|
|
1049
|
-
a(?x, n338) :- a(?x, n337).
|
|
1050
|
-
a(?x, i338) :- a(?x, n337).
|
|
1051
|
-
a(?x, j338) :- a(?x, n337).
|
|
1052
|
-
a(?x, n339) :- a(?x, n338).
|
|
1053
|
-
a(?x, i339) :- a(?x, n338).
|
|
1054
|
-
a(?x, j339) :- a(?x, n338).
|
|
1055
|
-
a(?x, n340) :- a(?x, n339).
|
|
1056
|
-
a(?x, i340) :- a(?x, n339).
|
|
1057
|
-
a(?x, j340) :- a(?x, n339).
|
|
1058
|
-
a(?x, n341) :- a(?x, n340).
|
|
1059
|
-
a(?x, i341) :- a(?x, n340).
|
|
1060
|
-
a(?x, j341) :- a(?x, n340).
|
|
1061
|
-
a(?x, n342) :- a(?x, n341).
|
|
1062
|
-
a(?x, i342) :- a(?x, n341).
|
|
1063
|
-
a(?x, j342) :- a(?x, n341).
|
|
1064
|
-
a(?x, n343) :- a(?x, n342).
|
|
1065
|
-
a(?x, i343) :- a(?x, n342).
|
|
1066
|
-
a(?x, j343) :- a(?x, n342).
|
|
1067
|
-
a(?x, n344) :- a(?x, n343).
|
|
1068
|
-
a(?x, i344) :- a(?x, n343).
|
|
1069
|
-
a(?x, j344) :- a(?x, n343).
|
|
1070
|
-
a(?x, n345) :- a(?x, n344).
|
|
1071
|
-
a(?x, i345) :- a(?x, n344).
|
|
1072
|
-
a(?x, j345) :- a(?x, n344).
|
|
1073
|
-
a(?x, n346) :- a(?x, n345).
|
|
1074
|
-
a(?x, i346) :- a(?x, n345).
|
|
1075
|
-
a(?x, j346) :- a(?x, n345).
|
|
1076
|
-
a(?x, n347) :- a(?x, n346).
|
|
1077
|
-
a(?x, i347) :- a(?x, n346).
|
|
1078
|
-
a(?x, j347) :- a(?x, n346).
|
|
1079
|
-
a(?x, n348) :- a(?x, n347).
|
|
1080
|
-
a(?x, i348) :- a(?x, n347).
|
|
1081
|
-
a(?x, j348) :- a(?x, n347).
|
|
1082
|
-
a(?x, n349) :- a(?x, n348).
|
|
1083
|
-
a(?x, i349) :- a(?x, n348).
|
|
1084
|
-
a(?x, j349) :- a(?x, n348).
|
|
1085
|
-
a(?x, n350) :- a(?x, n349).
|
|
1086
|
-
a(?x, i350) :- a(?x, n349).
|
|
1087
|
-
a(?x, j350) :- a(?x, n349).
|
|
1088
|
-
a(?x, n351) :- a(?x, n350).
|
|
1089
|
-
a(?x, i351) :- a(?x, n350).
|
|
1090
|
-
a(?x, j351) :- a(?x, n350).
|
|
1091
|
-
a(?x, n352) :- a(?x, n351).
|
|
1092
|
-
a(?x, i352) :- a(?x, n351).
|
|
1093
|
-
a(?x, j352) :- a(?x, n351).
|
|
1094
|
-
a(?x, n353) :- a(?x, n352).
|
|
1095
|
-
a(?x, i353) :- a(?x, n352).
|
|
1096
|
-
a(?x, j353) :- a(?x, n352).
|
|
1097
|
-
a(?x, n354) :- a(?x, n353).
|
|
1098
|
-
a(?x, i354) :- a(?x, n353).
|
|
1099
|
-
a(?x, j354) :- a(?x, n353).
|
|
1100
|
-
a(?x, n355) :- a(?x, n354).
|
|
1101
|
-
a(?x, i355) :- a(?x, n354).
|
|
1102
|
-
a(?x, j355) :- a(?x, n354).
|
|
1103
|
-
a(?x, n356) :- a(?x, n355).
|
|
1104
|
-
a(?x, i356) :- a(?x, n355).
|
|
1105
|
-
a(?x, j356) :- a(?x, n355).
|
|
1106
|
-
a(?x, n357) :- a(?x, n356).
|
|
1107
|
-
a(?x, i357) :- a(?x, n356).
|
|
1108
|
-
a(?x, j357) :- a(?x, n356).
|
|
1109
|
-
a(?x, n358) :- a(?x, n357).
|
|
1110
|
-
a(?x, i358) :- a(?x, n357).
|
|
1111
|
-
a(?x, j358) :- a(?x, n357).
|
|
1112
|
-
a(?x, n359) :- a(?x, n358).
|
|
1113
|
-
a(?x, i359) :- a(?x, n358).
|
|
1114
|
-
a(?x, j359) :- a(?x, n358).
|
|
1115
|
-
a(?x, n360) :- a(?x, n359).
|
|
1116
|
-
a(?x, i360) :- a(?x, n359).
|
|
1117
|
-
a(?x, j360) :- a(?x, n359).
|
|
1118
|
-
a(?x, n361) :- a(?x, n360).
|
|
1119
|
-
a(?x, i361) :- a(?x, n360).
|
|
1120
|
-
a(?x, j361) :- a(?x, n360).
|
|
1121
|
-
a(?x, n362) :- a(?x, n361).
|
|
1122
|
-
a(?x, i362) :- a(?x, n361).
|
|
1123
|
-
a(?x, j362) :- a(?x, n361).
|
|
1124
|
-
a(?x, n363) :- a(?x, n362).
|
|
1125
|
-
a(?x, i363) :- a(?x, n362).
|
|
1126
|
-
a(?x, j363) :- a(?x, n362).
|
|
1127
|
-
a(?x, n364) :- a(?x, n363).
|
|
1128
|
-
a(?x, i364) :- a(?x, n363).
|
|
1129
|
-
a(?x, j364) :- a(?x, n363).
|
|
1130
|
-
a(?x, n365) :- a(?x, n364).
|
|
1131
|
-
a(?x, i365) :- a(?x, n364).
|
|
1132
|
-
a(?x, j365) :- a(?x, n364).
|
|
1133
|
-
a(?x, n366) :- a(?x, n365).
|
|
1134
|
-
a(?x, i366) :- a(?x, n365).
|
|
1135
|
-
a(?x, j366) :- a(?x, n365).
|
|
1136
|
-
a(?x, n367) :- a(?x, n366).
|
|
1137
|
-
a(?x, i367) :- a(?x, n366).
|
|
1138
|
-
a(?x, j367) :- a(?x, n366).
|
|
1139
|
-
a(?x, n368) :- a(?x, n367).
|
|
1140
|
-
a(?x, i368) :- a(?x, n367).
|
|
1141
|
-
a(?x, j368) :- a(?x, n367).
|
|
1142
|
-
a(?x, n369) :- a(?x, n368).
|
|
1143
|
-
a(?x, i369) :- a(?x, n368).
|
|
1144
|
-
a(?x, j369) :- a(?x, n368).
|
|
1145
|
-
a(?x, n370) :- a(?x, n369).
|
|
1146
|
-
a(?x, i370) :- a(?x, n369).
|
|
1147
|
-
a(?x, j370) :- a(?x, n369).
|
|
1148
|
-
a(?x, n371) :- a(?x, n370).
|
|
1149
|
-
a(?x, i371) :- a(?x, n370).
|
|
1150
|
-
a(?x, j371) :- a(?x, n370).
|
|
1151
|
-
a(?x, n372) :- a(?x, n371).
|
|
1152
|
-
a(?x, i372) :- a(?x, n371).
|
|
1153
|
-
a(?x, j372) :- a(?x, n371).
|
|
1154
|
-
a(?x, n373) :- a(?x, n372).
|
|
1155
|
-
a(?x, i373) :- a(?x, n372).
|
|
1156
|
-
a(?x, j373) :- a(?x, n372).
|
|
1157
|
-
a(?x, n374) :- a(?x, n373).
|
|
1158
|
-
a(?x, i374) :- a(?x, n373).
|
|
1159
|
-
a(?x, j374) :- a(?x, n373).
|
|
1160
|
-
a(?x, n375) :- a(?x, n374).
|
|
1161
|
-
a(?x, i375) :- a(?x, n374).
|
|
1162
|
-
a(?x, j375) :- a(?x, n374).
|
|
1163
|
-
a(?x, n376) :- a(?x, n375).
|
|
1164
|
-
a(?x, i376) :- a(?x, n375).
|
|
1165
|
-
a(?x, j376) :- a(?x, n375).
|
|
1166
|
-
a(?x, n377) :- a(?x, n376).
|
|
1167
|
-
a(?x, i377) :- a(?x, n376).
|
|
1168
|
-
a(?x, j377) :- a(?x, n376).
|
|
1169
|
-
a(?x, n378) :- a(?x, n377).
|
|
1170
|
-
a(?x, i378) :- a(?x, n377).
|
|
1171
|
-
a(?x, j378) :- a(?x, n377).
|
|
1172
|
-
a(?x, n379) :- a(?x, n378).
|
|
1173
|
-
a(?x, i379) :- a(?x, n378).
|
|
1174
|
-
a(?x, j379) :- a(?x, n378).
|
|
1175
|
-
a(?x, n380) :- a(?x, n379).
|
|
1176
|
-
a(?x, i380) :- a(?x, n379).
|
|
1177
|
-
a(?x, j380) :- a(?x, n379).
|
|
1178
|
-
a(?x, n381) :- a(?x, n380).
|
|
1179
|
-
a(?x, i381) :- a(?x, n380).
|
|
1180
|
-
a(?x, j381) :- a(?x, n380).
|
|
1181
|
-
a(?x, n382) :- a(?x, n381).
|
|
1182
|
-
a(?x, i382) :- a(?x, n381).
|
|
1183
|
-
a(?x, j382) :- a(?x, n381).
|
|
1184
|
-
a(?x, n383) :- a(?x, n382).
|
|
1185
|
-
a(?x, i383) :- a(?x, n382).
|
|
1186
|
-
a(?x, j383) :- a(?x, n382).
|
|
1187
|
-
a(?x, n384) :- a(?x, n383).
|
|
1188
|
-
a(?x, i384) :- a(?x, n383).
|
|
1189
|
-
a(?x, j384) :- a(?x, n383).
|
|
1190
|
-
a(?x, n385) :- a(?x, n384).
|
|
1191
|
-
a(?x, i385) :- a(?x, n384).
|
|
1192
|
-
a(?x, j385) :- a(?x, n384).
|
|
1193
|
-
a(?x, n386) :- a(?x, n385).
|
|
1194
|
-
a(?x, i386) :- a(?x, n385).
|
|
1195
|
-
a(?x, j386) :- a(?x, n385).
|
|
1196
|
-
a(?x, n387) :- a(?x, n386).
|
|
1197
|
-
a(?x, i387) :- a(?x, n386).
|
|
1198
|
-
a(?x, j387) :- a(?x, n386).
|
|
1199
|
-
a(?x, n388) :- a(?x, n387).
|
|
1200
|
-
a(?x, i388) :- a(?x, n387).
|
|
1201
|
-
a(?x, j388) :- a(?x, n387).
|
|
1202
|
-
a(?x, n389) :- a(?x, n388).
|
|
1203
|
-
a(?x, i389) :- a(?x, n388).
|
|
1204
|
-
a(?x, j389) :- a(?x, n388).
|
|
1205
|
-
a(?x, n390) :- a(?x, n389).
|
|
1206
|
-
a(?x, i390) :- a(?x, n389).
|
|
1207
|
-
a(?x, j390) :- a(?x, n389).
|
|
1208
|
-
a(?x, n391) :- a(?x, n390).
|
|
1209
|
-
a(?x, i391) :- a(?x, n390).
|
|
1210
|
-
a(?x, j391) :- a(?x, n390).
|
|
1211
|
-
a(?x, n392) :- a(?x, n391).
|
|
1212
|
-
a(?x, i392) :- a(?x, n391).
|
|
1213
|
-
a(?x, j392) :- a(?x, n391).
|
|
1214
|
-
a(?x, n393) :- a(?x, n392).
|
|
1215
|
-
a(?x, i393) :- a(?x, n392).
|
|
1216
|
-
a(?x, j393) :- a(?x, n392).
|
|
1217
|
-
a(?x, n394) :- a(?x, n393).
|
|
1218
|
-
a(?x, i394) :- a(?x, n393).
|
|
1219
|
-
a(?x, j394) :- a(?x, n393).
|
|
1220
|
-
a(?x, n395) :- a(?x, n394).
|
|
1221
|
-
a(?x, i395) :- a(?x, n394).
|
|
1222
|
-
a(?x, j395) :- a(?x, n394).
|
|
1223
|
-
a(?x, n396) :- a(?x, n395).
|
|
1224
|
-
a(?x, i396) :- a(?x, n395).
|
|
1225
|
-
a(?x, j396) :- a(?x, n395).
|
|
1226
|
-
a(?x, n397) :- a(?x, n396).
|
|
1227
|
-
a(?x, i397) :- a(?x, n396).
|
|
1228
|
-
a(?x, j397) :- a(?x, n396).
|
|
1229
|
-
a(?x, n398) :- a(?x, n397).
|
|
1230
|
-
a(?x, i398) :- a(?x, n397).
|
|
1231
|
-
a(?x, j398) :- a(?x, n397).
|
|
1232
|
-
a(?x, n399) :- a(?x, n398).
|
|
1233
|
-
a(?x, i399) :- a(?x, n398).
|
|
1234
|
-
a(?x, j399) :- a(?x, n398).
|
|
1235
|
-
a(?x, n400) :- a(?x, n399).
|
|
1236
|
-
a(?x, i400) :- a(?x, n399).
|
|
1237
|
-
a(?x, j400) :- a(?x, n399).
|
|
1238
|
-
a(?x, n401) :- a(?x, n400).
|
|
1239
|
-
a(?x, i401) :- a(?x, n400).
|
|
1240
|
-
a(?x, j401) :- a(?x, n400).
|
|
1241
|
-
a(?x, n402) :- a(?x, n401).
|
|
1242
|
-
a(?x, i402) :- a(?x, n401).
|
|
1243
|
-
a(?x, j402) :- a(?x, n401).
|
|
1244
|
-
a(?x, n403) :- a(?x, n402).
|
|
1245
|
-
a(?x, i403) :- a(?x, n402).
|
|
1246
|
-
a(?x, j403) :- a(?x, n402).
|
|
1247
|
-
a(?x, n404) :- a(?x, n403).
|
|
1248
|
-
a(?x, i404) :- a(?x, n403).
|
|
1249
|
-
a(?x, j404) :- a(?x, n403).
|
|
1250
|
-
a(?x, n405) :- a(?x, n404).
|
|
1251
|
-
a(?x, i405) :- a(?x, n404).
|
|
1252
|
-
a(?x, j405) :- a(?x, n404).
|
|
1253
|
-
a(?x, n406) :- a(?x, n405).
|
|
1254
|
-
a(?x, i406) :- a(?x, n405).
|
|
1255
|
-
a(?x, j406) :- a(?x, n405).
|
|
1256
|
-
a(?x, n407) :- a(?x, n406).
|
|
1257
|
-
a(?x, i407) :- a(?x, n406).
|
|
1258
|
-
a(?x, j407) :- a(?x, n406).
|
|
1259
|
-
a(?x, n408) :- a(?x, n407).
|
|
1260
|
-
a(?x, i408) :- a(?x, n407).
|
|
1261
|
-
a(?x, j408) :- a(?x, n407).
|
|
1262
|
-
a(?x, n409) :- a(?x, n408).
|
|
1263
|
-
a(?x, i409) :- a(?x, n408).
|
|
1264
|
-
a(?x, j409) :- a(?x, n408).
|
|
1265
|
-
a(?x, n410) :- a(?x, n409).
|
|
1266
|
-
a(?x, i410) :- a(?x, n409).
|
|
1267
|
-
a(?x, j410) :- a(?x, n409).
|
|
1268
|
-
a(?x, n411) :- a(?x, n410).
|
|
1269
|
-
a(?x, i411) :- a(?x, n410).
|
|
1270
|
-
a(?x, j411) :- a(?x, n410).
|
|
1271
|
-
a(?x, n412) :- a(?x, n411).
|
|
1272
|
-
a(?x, i412) :- a(?x, n411).
|
|
1273
|
-
a(?x, j412) :- a(?x, n411).
|
|
1274
|
-
a(?x, n413) :- a(?x, n412).
|
|
1275
|
-
a(?x, i413) :- a(?x, n412).
|
|
1276
|
-
a(?x, j413) :- a(?x, n412).
|
|
1277
|
-
a(?x, n414) :- a(?x, n413).
|
|
1278
|
-
a(?x, i414) :- a(?x, n413).
|
|
1279
|
-
a(?x, j414) :- a(?x, n413).
|
|
1280
|
-
a(?x, n415) :- a(?x, n414).
|
|
1281
|
-
a(?x, i415) :- a(?x, n414).
|
|
1282
|
-
a(?x, j415) :- a(?x, n414).
|
|
1283
|
-
a(?x, n416) :- a(?x, n415).
|
|
1284
|
-
a(?x, i416) :- a(?x, n415).
|
|
1285
|
-
a(?x, j416) :- a(?x, n415).
|
|
1286
|
-
a(?x, n417) :- a(?x, n416).
|
|
1287
|
-
a(?x, i417) :- a(?x, n416).
|
|
1288
|
-
a(?x, j417) :- a(?x, n416).
|
|
1289
|
-
a(?x, n418) :- a(?x, n417).
|
|
1290
|
-
a(?x, i418) :- a(?x, n417).
|
|
1291
|
-
a(?x, j418) :- a(?x, n417).
|
|
1292
|
-
a(?x, n419) :- a(?x, n418).
|
|
1293
|
-
a(?x, i419) :- a(?x, n418).
|
|
1294
|
-
a(?x, j419) :- a(?x, n418).
|
|
1295
|
-
a(?x, n420) :- a(?x, n419).
|
|
1296
|
-
a(?x, i420) :- a(?x, n419).
|
|
1297
|
-
a(?x, j420) :- a(?x, n419).
|
|
1298
|
-
a(?x, n421) :- a(?x, n420).
|
|
1299
|
-
a(?x, i421) :- a(?x, n420).
|
|
1300
|
-
a(?x, j421) :- a(?x, n420).
|
|
1301
|
-
a(?x, n422) :- a(?x, n421).
|
|
1302
|
-
a(?x, i422) :- a(?x, n421).
|
|
1303
|
-
a(?x, j422) :- a(?x, n421).
|
|
1304
|
-
a(?x, n423) :- a(?x, n422).
|
|
1305
|
-
a(?x, i423) :- a(?x, n422).
|
|
1306
|
-
a(?x, j423) :- a(?x, n422).
|
|
1307
|
-
a(?x, n424) :- a(?x, n423).
|
|
1308
|
-
a(?x, i424) :- a(?x, n423).
|
|
1309
|
-
a(?x, j424) :- a(?x, n423).
|
|
1310
|
-
a(?x, n425) :- a(?x, n424).
|
|
1311
|
-
a(?x, i425) :- a(?x, n424).
|
|
1312
|
-
a(?x, j425) :- a(?x, n424).
|
|
1313
|
-
a(?x, n426) :- a(?x, n425).
|
|
1314
|
-
a(?x, i426) :- a(?x, n425).
|
|
1315
|
-
a(?x, j426) :- a(?x, n425).
|
|
1316
|
-
a(?x, n427) :- a(?x, n426).
|
|
1317
|
-
a(?x, i427) :- a(?x, n426).
|
|
1318
|
-
a(?x, j427) :- a(?x, n426).
|
|
1319
|
-
a(?x, n428) :- a(?x, n427).
|
|
1320
|
-
a(?x, i428) :- a(?x, n427).
|
|
1321
|
-
a(?x, j428) :- a(?x, n427).
|
|
1322
|
-
a(?x, n429) :- a(?x, n428).
|
|
1323
|
-
a(?x, i429) :- a(?x, n428).
|
|
1324
|
-
a(?x, j429) :- a(?x, n428).
|
|
1325
|
-
a(?x, n430) :- a(?x, n429).
|
|
1326
|
-
a(?x, i430) :- a(?x, n429).
|
|
1327
|
-
a(?x, j430) :- a(?x, n429).
|
|
1328
|
-
a(?x, n431) :- a(?x, n430).
|
|
1329
|
-
a(?x, i431) :- a(?x, n430).
|
|
1330
|
-
a(?x, j431) :- a(?x, n430).
|
|
1331
|
-
a(?x, n432) :- a(?x, n431).
|
|
1332
|
-
a(?x, i432) :- a(?x, n431).
|
|
1333
|
-
a(?x, j432) :- a(?x, n431).
|
|
1334
|
-
a(?x, n433) :- a(?x, n432).
|
|
1335
|
-
a(?x, i433) :- a(?x, n432).
|
|
1336
|
-
a(?x, j433) :- a(?x, n432).
|
|
1337
|
-
a(?x, n434) :- a(?x, n433).
|
|
1338
|
-
a(?x, i434) :- a(?x, n433).
|
|
1339
|
-
a(?x, j434) :- a(?x, n433).
|
|
1340
|
-
a(?x, n435) :- a(?x, n434).
|
|
1341
|
-
a(?x, i435) :- a(?x, n434).
|
|
1342
|
-
a(?x, j435) :- a(?x, n434).
|
|
1343
|
-
a(?x, n436) :- a(?x, n435).
|
|
1344
|
-
a(?x, i436) :- a(?x, n435).
|
|
1345
|
-
a(?x, j436) :- a(?x, n435).
|
|
1346
|
-
a(?x, n437) :- a(?x, n436).
|
|
1347
|
-
a(?x, i437) :- a(?x, n436).
|
|
1348
|
-
a(?x, j437) :- a(?x, n436).
|
|
1349
|
-
a(?x, n438) :- a(?x, n437).
|
|
1350
|
-
a(?x, i438) :- a(?x, n437).
|
|
1351
|
-
a(?x, j438) :- a(?x, n437).
|
|
1352
|
-
a(?x, n439) :- a(?x, n438).
|
|
1353
|
-
a(?x, i439) :- a(?x, n438).
|
|
1354
|
-
a(?x, j439) :- a(?x, n438).
|
|
1355
|
-
a(?x, n440) :- a(?x, n439).
|
|
1356
|
-
a(?x, i440) :- a(?x, n439).
|
|
1357
|
-
a(?x, j440) :- a(?x, n439).
|
|
1358
|
-
a(?x, n441) :- a(?x, n440).
|
|
1359
|
-
a(?x, i441) :- a(?x, n440).
|
|
1360
|
-
a(?x, j441) :- a(?x, n440).
|
|
1361
|
-
a(?x, n442) :- a(?x, n441).
|
|
1362
|
-
a(?x, i442) :- a(?x, n441).
|
|
1363
|
-
a(?x, j442) :- a(?x, n441).
|
|
1364
|
-
a(?x, n443) :- a(?x, n442).
|
|
1365
|
-
a(?x, i443) :- a(?x, n442).
|
|
1366
|
-
a(?x, j443) :- a(?x, n442).
|
|
1367
|
-
a(?x, n444) :- a(?x, n443).
|
|
1368
|
-
a(?x, i444) :- a(?x, n443).
|
|
1369
|
-
a(?x, j444) :- a(?x, n443).
|
|
1370
|
-
a(?x, n445) :- a(?x, n444).
|
|
1371
|
-
a(?x, i445) :- a(?x, n444).
|
|
1372
|
-
a(?x, j445) :- a(?x, n444).
|
|
1373
|
-
a(?x, n446) :- a(?x, n445).
|
|
1374
|
-
a(?x, i446) :- a(?x, n445).
|
|
1375
|
-
a(?x, j446) :- a(?x, n445).
|
|
1376
|
-
a(?x, n447) :- a(?x, n446).
|
|
1377
|
-
a(?x, i447) :- a(?x, n446).
|
|
1378
|
-
a(?x, j447) :- a(?x, n446).
|
|
1379
|
-
a(?x, n448) :- a(?x, n447).
|
|
1380
|
-
a(?x, i448) :- a(?x, n447).
|
|
1381
|
-
a(?x, j448) :- a(?x, n447).
|
|
1382
|
-
a(?x, n449) :- a(?x, n448).
|
|
1383
|
-
a(?x, i449) :- a(?x, n448).
|
|
1384
|
-
a(?x, j449) :- a(?x, n448).
|
|
1385
|
-
a(?x, n450) :- a(?x, n449).
|
|
1386
|
-
a(?x, i450) :- a(?x, n449).
|
|
1387
|
-
a(?x, j450) :- a(?x, n449).
|
|
1388
|
-
a(?x, n451) :- a(?x, n450).
|
|
1389
|
-
a(?x, i451) :- a(?x, n450).
|
|
1390
|
-
a(?x, j451) :- a(?x, n450).
|
|
1391
|
-
a(?x, n452) :- a(?x, n451).
|
|
1392
|
-
a(?x, i452) :- a(?x, n451).
|
|
1393
|
-
a(?x, j452) :- a(?x, n451).
|
|
1394
|
-
a(?x, n453) :- a(?x, n452).
|
|
1395
|
-
a(?x, i453) :- a(?x, n452).
|
|
1396
|
-
a(?x, j453) :- a(?x, n452).
|
|
1397
|
-
a(?x, n454) :- a(?x, n453).
|
|
1398
|
-
a(?x, i454) :- a(?x, n453).
|
|
1399
|
-
a(?x, j454) :- a(?x, n453).
|
|
1400
|
-
a(?x, n455) :- a(?x, n454).
|
|
1401
|
-
a(?x, i455) :- a(?x, n454).
|
|
1402
|
-
a(?x, j455) :- a(?x, n454).
|
|
1403
|
-
a(?x, n456) :- a(?x, n455).
|
|
1404
|
-
a(?x, i456) :- a(?x, n455).
|
|
1405
|
-
a(?x, j456) :- a(?x, n455).
|
|
1406
|
-
a(?x, n457) :- a(?x, n456).
|
|
1407
|
-
a(?x, i457) :- a(?x, n456).
|
|
1408
|
-
a(?x, j457) :- a(?x, n456).
|
|
1409
|
-
a(?x, n458) :- a(?x, n457).
|
|
1410
|
-
a(?x, i458) :- a(?x, n457).
|
|
1411
|
-
a(?x, j458) :- a(?x, n457).
|
|
1412
|
-
a(?x, n459) :- a(?x, n458).
|
|
1413
|
-
a(?x, i459) :- a(?x, n458).
|
|
1414
|
-
a(?x, j459) :- a(?x, n458).
|
|
1415
|
-
a(?x, n460) :- a(?x, n459).
|
|
1416
|
-
a(?x, i460) :- a(?x, n459).
|
|
1417
|
-
a(?x, j460) :- a(?x, n459).
|
|
1418
|
-
a(?x, n461) :- a(?x, n460).
|
|
1419
|
-
a(?x, i461) :- a(?x, n460).
|
|
1420
|
-
a(?x, j461) :- a(?x, n460).
|
|
1421
|
-
a(?x, n462) :- a(?x, n461).
|
|
1422
|
-
a(?x, i462) :- a(?x, n461).
|
|
1423
|
-
a(?x, j462) :- a(?x, n461).
|
|
1424
|
-
a(?x, n463) :- a(?x, n462).
|
|
1425
|
-
a(?x, i463) :- a(?x, n462).
|
|
1426
|
-
a(?x, j463) :- a(?x, n462).
|
|
1427
|
-
a(?x, n464) :- a(?x, n463).
|
|
1428
|
-
a(?x, i464) :- a(?x, n463).
|
|
1429
|
-
a(?x, j464) :- a(?x, n463).
|
|
1430
|
-
a(?x, n465) :- a(?x, n464).
|
|
1431
|
-
a(?x, i465) :- a(?x, n464).
|
|
1432
|
-
a(?x, j465) :- a(?x, n464).
|
|
1433
|
-
a(?x, n466) :- a(?x, n465).
|
|
1434
|
-
a(?x, i466) :- a(?x, n465).
|
|
1435
|
-
a(?x, j466) :- a(?x, n465).
|
|
1436
|
-
a(?x, n467) :- a(?x, n466).
|
|
1437
|
-
a(?x, i467) :- a(?x, n466).
|
|
1438
|
-
a(?x, j467) :- a(?x, n466).
|
|
1439
|
-
a(?x, n468) :- a(?x, n467).
|
|
1440
|
-
a(?x, i468) :- a(?x, n467).
|
|
1441
|
-
a(?x, j468) :- a(?x, n467).
|
|
1442
|
-
a(?x, n469) :- a(?x, n468).
|
|
1443
|
-
a(?x, i469) :- a(?x, n468).
|
|
1444
|
-
a(?x, j469) :- a(?x, n468).
|
|
1445
|
-
a(?x, n470) :- a(?x, n469).
|
|
1446
|
-
a(?x, i470) :- a(?x, n469).
|
|
1447
|
-
a(?x, j470) :- a(?x, n469).
|
|
1448
|
-
a(?x, n471) :- a(?x, n470).
|
|
1449
|
-
a(?x, i471) :- a(?x, n470).
|
|
1450
|
-
a(?x, j471) :- a(?x, n470).
|
|
1451
|
-
a(?x, n472) :- a(?x, n471).
|
|
1452
|
-
a(?x, i472) :- a(?x, n471).
|
|
1453
|
-
a(?x, j472) :- a(?x, n471).
|
|
1454
|
-
a(?x, n473) :- a(?x, n472).
|
|
1455
|
-
a(?x, i473) :- a(?x, n472).
|
|
1456
|
-
a(?x, j473) :- a(?x, n472).
|
|
1457
|
-
a(?x, n474) :- a(?x, n473).
|
|
1458
|
-
a(?x, i474) :- a(?x, n473).
|
|
1459
|
-
a(?x, j474) :- a(?x, n473).
|
|
1460
|
-
a(?x, n475) :- a(?x, n474).
|
|
1461
|
-
a(?x, i475) :- a(?x, n474).
|
|
1462
|
-
a(?x, j475) :- a(?x, n474).
|
|
1463
|
-
a(?x, n476) :- a(?x, n475).
|
|
1464
|
-
a(?x, i476) :- a(?x, n475).
|
|
1465
|
-
a(?x, j476) :- a(?x, n475).
|
|
1466
|
-
a(?x, n477) :- a(?x, n476).
|
|
1467
|
-
a(?x, i477) :- a(?x, n476).
|
|
1468
|
-
a(?x, j477) :- a(?x, n476).
|
|
1469
|
-
a(?x, n478) :- a(?x, n477).
|
|
1470
|
-
a(?x, i478) :- a(?x, n477).
|
|
1471
|
-
a(?x, j478) :- a(?x, n477).
|
|
1472
|
-
a(?x, n479) :- a(?x, n478).
|
|
1473
|
-
a(?x, i479) :- a(?x, n478).
|
|
1474
|
-
a(?x, j479) :- a(?x, n478).
|
|
1475
|
-
a(?x, n480) :- a(?x, n479).
|
|
1476
|
-
a(?x, i480) :- a(?x, n479).
|
|
1477
|
-
a(?x, j480) :- a(?x, n479).
|
|
1478
|
-
a(?x, n481) :- a(?x, n480).
|
|
1479
|
-
a(?x, i481) :- a(?x, n480).
|
|
1480
|
-
a(?x, j481) :- a(?x, n480).
|
|
1481
|
-
a(?x, n482) :- a(?x, n481).
|
|
1482
|
-
a(?x, i482) :- a(?x, n481).
|
|
1483
|
-
a(?x, j482) :- a(?x, n481).
|
|
1484
|
-
a(?x, n483) :- a(?x, n482).
|
|
1485
|
-
a(?x, i483) :- a(?x, n482).
|
|
1486
|
-
a(?x, j483) :- a(?x, n482).
|
|
1487
|
-
a(?x, n484) :- a(?x, n483).
|
|
1488
|
-
a(?x, i484) :- a(?x, n483).
|
|
1489
|
-
a(?x, j484) :- a(?x, n483).
|
|
1490
|
-
a(?x, n485) :- a(?x, n484).
|
|
1491
|
-
a(?x, i485) :- a(?x, n484).
|
|
1492
|
-
a(?x, j485) :- a(?x, n484).
|
|
1493
|
-
a(?x, n486) :- a(?x, n485).
|
|
1494
|
-
a(?x, i486) :- a(?x, n485).
|
|
1495
|
-
a(?x, j486) :- a(?x, n485).
|
|
1496
|
-
a(?x, n487) :- a(?x, n486).
|
|
1497
|
-
a(?x, i487) :- a(?x, n486).
|
|
1498
|
-
a(?x, j487) :- a(?x, n486).
|
|
1499
|
-
a(?x, n488) :- a(?x, n487).
|
|
1500
|
-
a(?x, i488) :- a(?x, n487).
|
|
1501
|
-
a(?x, j488) :- a(?x, n487).
|
|
1502
|
-
a(?x, n489) :- a(?x, n488).
|
|
1503
|
-
a(?x, i489) :- a(?x, n488).
|
|
1504
|
-
a(?x, j489) :- a(?x, n488).
|
|
1505
|
-
a(?x, n490) :- a(?x, n489).
|
|
1506
|
-
a(?x, i490) :- a(?x, n489).
|
|
1507
|
-
a(?x, j490) :- a(?x, n489).
|
|
1508
|
-
a(?x, n491) :- a(?x, n490).
|
|
1509
|
-
a(?x, i491) :- a(?x, n490).
|
|
1510
|
-
a(?x, j491) :- a(?x, n490).
|
|
1511
|
-
a(?x, n492) :- a(?x, n491).
|
|
1512
|
-
a(?x, i492) :- a(?x, n491).
|
|
1513
|
-
a(?x, j492) :- a(?x, n491).
|
|
1514
|
-
a(?x, n493) :- a(?x, n492).
|
|
1515
|
-
a(?x, i493) :- a(?x, n492).
|
|
1516
|
-
a(?x, j493) :- a(?x, n492).
|
|
1517
|
-
a(?x, n494) :- a(?x, n493).
|
|
1518
|
-
a(?x, i494) :- a(?x, n493).
|
|
1519
|
-
a(?x, j494) :- a(?x, n493).
|
|
1520
|
-
a(?x, n495) :- a(?x, n494).
|
|
1521
|
-
a(?x, i495) :- a(?x, n494).
|
|
1522
|
-
a(?x, j495) :- a(?x, n494).
|
|
1523
|
-
a(?x, n496) :- a(?x, n495).
|
|
1524
|
-
a(?x, i496) :- a(?x, n495).
|
|
1525
|
-
a(?x, j496) :- a(?x, n495).
|
|
1526
|
-
a(?x, n497) :- a(?x, n496).
|
|
1527
|
-
a(?x, i497) :- a(?x, n496).
|
|
1528
|
-
a(?x, j497) :- a(?x, n496).
|
|
1529
|
-
a(?x, n498) :- a(?x, n497).
|
|
1530
|
-
a(?x, i498) :- a(?x, n497).
|
|
1531
|
-
a(?x, j498) :- a(?x, n497).
|
|
1532
|
-
a(?x, n499) :- a(?x, n498).
|
|
1533
|
-
a(?x, i499) :- a(?x, n498).
|
|
1534
|
-
a(?x, j499) :- a(?x, n498).
|
|
1535
|
-
a(?x, n500) :- a(?x, n499).
|
|
1536
|
-
a(?x, i500) :- a(?x, n499).
|
|
1537
|
-
a(?x, j500) :- a(?x, n499).
|
|
1538
|
-
a(?x, n501) :- a(?x, n500).
|
|
1539
|
-
a(?x, i501) :- a(?x, n500).
|
|
1540
|
-
a(?x, j501) :- a(?x, n500).
|
|
1541
|
-
a(?x, n502) :- a(?x, n501).
|
|
1542
|
-
a(?x, i502) :- a(?x, n501).
|
|
1543
|
-
a(?x, j502) :- a(?x, n501).
|
|
1544
|
-
a(?x, n503) :- a(?x, n502).
|
|
1545
|
-
a(?x, i503) :- a(?x, n502).
|
|
1546
|
-
a(?x, j503) :- a(?x, n502).
|
|
1547
|
-
a(?x, n504) :- a(?x, n503).
|
|
1548
|
-
a(?x, i504) :- a(?x, n503).
|
|
1549
|
-
a(?x, j504) :- a(?x, n503).
|
|
1550
|
-
a(?x, n505) :- a(?x, n504).
|
|
1551
|
-
a(?x, i505) :- a(?x, n504).
|
|
1552
|
-
a(?x, j505) :- a(?x, n504).
|
|
1553
|
-
a(?x, n506) :- a(?x, n505).
|
|
1554
|
-
a(?x, i506) :- a(?x, n505).
|
|
1555
|
-
a(?x, j506) :- a(?x, n505).
|
|
1556
|
-
a(?x, n507) :- a(?x, n506).
|
|
1557
|
-
a(?x, i507) :- a(?x, n506).
|
|
1558
|
-
a(?x, j507) :- a(?x, n506).
|
|
1559
|
-
a(?x, n508) :- a(?x, n507).
|
|
1560
|
-
a(?x, i508) :- a(?x, n507).
|
|
1561
|
-
a(?x, j508) :- a(?x, n507).
|
|
1562
|
-
a(?x, n509) :- a(?x, n508).
|
|
1563
|
-
a(?x, i509) :- a(?x, n508).
|
|
1564
|
-
a(?x, j509) :- a(?x, n508).
|
|
1565
|
-
a(?x, n510) :- a(?x, n509).
|
|
1566
|
-
a(?x, i510) :- a(?x, n509).
|
|
1567
|
-
a(?x, j510) :- a(?x, n509).
|
|
1568
|
-
a(?x, n511) :- a(?x, n510).
|
|
1569
|
-
a(?x, i511) :- a(?x, n510).
|
|
1570
|
-
a(?x, j511) :- a(?x, n510).
|
|
1571
|
-
a(?x, n512) :- a(?x, n511).
|
|
1572
|
-
a(?x, i512) :- a(?x, n511).
|
|
1573
|
-
a(?x, j512) :- a(?x, n511).
|
|
1574
|
-
a(?x, n513) :- a(?x, n512).
|
|
1575
|
-
a(?x, i513) :- a(?x, n512).
|
|
1576
|
-
a(?x, j513) :- a(?x, n512).
|
|
1577
|
-
a(?x, n514) :- a(?x, n513).
|
|
1578
|
-
a(?x, i514) :- a(?x, n513).
|
|
1579
|
-
a(?x, j514) :- a(?x, n513).
|
|
1580
|
-
a(?x, n515) :- a(?x, n514).
|
|
1581
|
-
a(?x, i515) :- a(?x, n514).
|
|
1582
|
-
a(?x, j515) :- a(?x, n514).
|
|
1583
|
-
a(?x, n516) :- a(?x, n515).
|
|
1584
|
-
a(?x, i516) :- a(?x, n515).
|
|
1585
|
-
a(?x, j516) :- a(?x, n515).
|
|
1586
|
-
a(?x, n517) :- a(?x, n516).
|
|
1587
|
-
a(?x, i517) :- a(?x, n516).
|
|
1588
|
-
a(?x, j517) :- a(?x, n516).
|
|
1589
|
-
a(?x, n518) :- a(?x, n517).
|
|
1590
|
-
a(?x, i518) :- a(?x, n517).
|
|
1591
|
-
a(?x, j518) :- a(?x, n517).
|
|
1592
|
-
a(?x, n519) :- a(?x, n518).
|
|
1593
|
-
a(?x, i519) :- a(?x, n518).
|
|
1594
|
-
a(?x, j519) :- a(?x, n518).
|
|
1595
|
-
a(?x, n520) :- a(?x, n519).
|
|
1596
|
-
a(?x, i520) :- a(?x, n519).
|
|
1597
|
-
a(?x, j520) :- a(?x, n519).
|
|
1598
|
-
a(?x, n521) :- a(?x, n520).
|
|
1599
|
-
a(?x, i521) :- a(?x, n520).
|
|
1600
|
-
a(?x, j521) :- a(?x, n520).
|
|
1601
|
-
a(?x, n522) :- a(?x, n521).
|
|
1602
|
-
a(?x, i522) :- a(?x, n521).
|
|
1603
|
-
a(?x, j522) :- a(?x, n521).
|
|
1604
|
-
a(?x, n523) :- a(?x, n522).
|
|
1605
|
-
a(?x, i523) :- a(?x, n522).
|
|
1606
|
-
a(?x, j523) :- a(?x, n522).
|
|
1607
|
-
a(?x, n524) :- a(?x, n523).
|
|
1608
|
-
a(?x, i524) :- a(?x, n523).
|
|
1609
|
-
a(?x, j524) :- a(?x, n523).
|
|
1610
|
-
a(?x, n525) :- a(?x, n524).
|
|
1611
|
-
a(?x, i525) :- a(?x, n524).
|
|
1612
|
-
a(?x, j525) :- a(?x, n524).
|
|
1613
|
-
a(?x, n526) :- a(?x, n525).
|
|
1614
|
-
a(?x, i526) :- a(?x, n525).
|
|
1615
|
-
a(?x, j526) :- a(?x, n525).
|
|
1616
|
-
a(?x, n527) :- a(?x, n526).
|
|
1617
|
-
a(?x, i527) :- a(?x, n526).
|
|
1618
|
-
a(?x, j527) :- a(?x, n526).
|
|
1619
|
-
a(?x, n528) :- a(?x, n527).
|
|
1620
|
-
a(?x, i528) :- a(?x, n527).
|
|
1621
|
-
a(?x, j528) :- a(?x, n527).
|
|
1622
|
-
a(?x, n529) :- a(?x, n528).
|
|
1623
|
-
a(?x, i529) :- a(?x, n528).
|
|
1624
|
-
a(?x, j529) :- a(?x, n528).
|
|
1625
|
-
a(?x, n530) :- a(?x, n529).
|
|
1626
|
-
a(?x, i530) :- a(?x, n529).
|
|
1627
|
-
a(?x, j530) :- a(?x, n529).
|
|
1628
|
-
a(?x, n531) :- a(?x, n530).
|
|
1629
|
-
a(?x, i531) :- a(?x, n530).
|
|
1630
|
-
a(?x, j531) :- a(?x, n530).
|
|
1631
|
-
a(?x, n532) :- a(?x, n531).
|
|
1632
|
-
a(?x, i532) :- a(?x, n531).
|
|
1633
|
-
a(?x, j532) :- a(?x, n531).
|
|
1634
|
-
a(?x, n533) :- a(?x, n532).
|
|
1635
|
-
a(?x, i533) :- a(?x, n532).
|
|
1636
|
-
a(?x, j533) :- a(?x, n532).
|
|
1637
|
-
a(?x, n534) :- a(?x, n533).
|
|
1638
|
-
a(?x, i534) :- a(?x, n533).
|
|
1639
|
-
a(?x, j534) :- a(?x, n533).
|
|
1640
|
-
a(?x, n535) :- a(?x, n534).
|
|
1641
|
-
a(?x, i535) :- a(?x, n534).
|
|
1642
|
-
a(?x, j535) :- a(?x, n534).
|
|
1643
|
-
a(?x, n536) :- a(?x, n535).
|
|
1644
|
-
a(?x, i536) :- a(?x, n535).
|
|
1645
|
-
a(?x, j536) :- a(?x, n535).
|
|
1646
|
-
a(?x, n537) :- a(?x, n536).
|
|
1647
|
-
a(?x, i537) :- a(?x, n536).
|
|
1648
|
-
a(?x, j537) :- a(?x, n536).
|
|
1649
|
-
a(?x, n538) :- a(?x, n537).
|
|
1650
|
-
a(?x, i538) :- a(?x, n537).
|
|
1651
|
-
a(?x, j538) :- a(?x, n537).
|
|
1652
|
-
a(?x, n539) :- a(?x, n538).
|
|
1653
|
-
a(?x, i539) :- a(?x, n538).
|
|
1654
|
-
a(?x, j539) :- a(?x, n538).
|
|
1655
|
-
a(?x, n540) :- a(?x, n539).
|
|
1656
|
-
a(?x, i540) :- a(?x, n539).
|
|
1657
|
-
a(?x, j540) :- a(?x, n539).
|
|
1658
|
-
a(?x, n541) :- a(?x, n540).
|
|
1659
|
-
a(?x, i541) :- a(?x, n540).
|
|
1660
|
-
a(?x, j541) :- a(?x, n540).
|
|
1661
|
-
a(?x, n542) :- a(?x, n541).
|
|
1662
|
-
a(?x, i542) :- a(?x, n541).
|
|
1663
|
-
a(?x, j542) :- a(?x, n541).
|
|
1664
|
-
a(?x, n543) :- a(?x, n542).
|
|
1665
|
-
a(?x, i543) :- a(?x, n542).
|
|
1666
|
-
a(?x, j543) :- a(?x, n542).
|
|
1667
|
-
a(?x, n544) :- a(?x, n543).
|
|
1668
|
-
a(?x, i544) :- a(?x, n543).
|
|
1669
|
-
a(?x, j544) :- a(?x, n543).
|
|
1670
|
-
a(?x, n545) :- a(?x, n544).
|
|
1671
|
-
a(?x, i545) :- a(?x, n544).
|
|
1672
|
-
a(?x, j545) :- a(?x, n544).
|
|
1673
|
-
a(?x, n546) :- a(?x, n545).
|
|
1674
|
-
a(?x, i546) :- a(?x, n545).
|
|
1675
|
-
a(?x, j546) :- a(?x, n545).
|
|
1676
|
-
a(?x, n547) :- a(?x, n546).
|
|
1677
|
-
a(?x, i547) :- a(?x, n546).
|
|
1678
|
-
a(?x, j547) :- a(?x, n546).
|
|
1679
|
-
a(?x, n548) :- a(?x, n547).
|
|
1680
|
-
a(?x, i548) :- a(?x, n547).
|
|
1681
|
-
a(?x, j548) :- a(?x, n547).
|
|
1682
|
-
a(?x, n549) :- a(?x, n548).
|
|
1683
|
-
a(?x, i549) :- a(?x, n548).
|
|
1684
|
-
a(?x, j549) :- a(?x, n548).
|
|
1685
|
-
a(?x, n550) :- a(?x, n549).
|
|
1686
|
-
a(?x, i550) :- a(?x, n549).
|
|
1687
|
-
a(?x, j550) :- a(?x, n549).
|
|
1688
|
-
a(?x, n551) :- a(?x, n550).
|
|
1689
|
-
a(?x, i551) :- a(?x, n550).
|
|
1690
|
-
a(?x, j551) :- a(?x, n550).
|
|
1691
|
-
a(?x, n552) :- a(?x, n551).
|
|
1692
|
-
a(?x, i552) :- a(?x, n551).
|
|
1693
|
-
a(?x, j552) :- a(?x, n551).
|
|
1694
|
-
a(?x, n553) :- a(?x, n552).
|
|
1695
|
-
a(?x, i553) :- a(?x, n552).
|
|
1696
|
-
a(?x, j553) :- a(?x, n552).
|
|
1697
|
-
a(?x, n554) :- a(?x, n553).
|
|
1698
|
-
a(?x, i554) :- a(?x, n553).
|
|
1699
|
-
a(?x, j554) :- a(?x, n553).
|
|
1700
|
-
a(?x, n555) :- a(?x, n554).
|
|
1701
|
-
a(?x, i555) :- a(?x, n554).
|
|
1702
|
-
a(?x, j555) :- a(?x, n554).
|
|
1703
|
-
a(?x, n556) :- a(?x, n555).
|
|
1704
|
-
a(?x, i556) :- a(?x, n555).
|
|
1705
|
-
a(?x, j556) :- a(?x, n555).
|
|
1706
|
-
a(?x, n557) :- a(?x, n556).
|
|
1707
|
-
a(?x, i557) :- a(?x, n556).
|
|
1708
|
-
a(?x, j557) :- a(?x, n556).
|
|
1709
|
-
a(?x, n558) :- a(?x, n557).
|
|
1710
|
-
a(?x, i558) :- a(?x, n557).
|
|
1711
|
-
a(?x, j558) :- a(?x, n557).
|
|
1712
|
-
a(?x, n559) :- a(?x, n558).
|
|
1713
|
-
a(?x, i559) :- a(?x, n558).
|
|
1714
|
-
a(?x, j559) :- a(?x, n558).
|
|
1715
|
-
a(?x, n560) :- a(?x, n559).
|
|
1716
|
-
a(?x, i560) :- a(?x, n559).
|
|
1717
|
-
a(?x, j560) :- a(?x, n559).
|
|
1718
|
-
a(?x, n561) :- a(?x, n560).
|
|
1719
|
-
a(?x, i561) :- a(?x, n560).
|
|
1720
|
-
a(?x, j561) :- a(?x, n560).
|
|
1721
|
-
a(?x, n562) :- a(?x, n561).
|
|
1722
|
-
a(?x, i562) :- a(?x, n561).
|
|
1723
|
-
a(?x, j562) :- a(?x, n561).
|
|
1724
|
-
a(?x, n563) :- a(?x, n562).
|
|
1725
|
-
a(?x, i563) :- a(?x, n562).
|
|
1726
|
-
a(?x, j563) :- a(?x, n562).
|
|
1727
|
-
a(?x, n564) :- a(?x, n563).
|
|
1728
|
-
a(?x, i564) :- a(?x, n563).
|
|
1729
|
-
a(?x, j564) :- a(?x, n563).
|
|
1730
|
-
a(?x, n565) :- a(?x, n564).
|
|
1731
|
-
a(?x, i565) :- a(?x, n564).
|
|
1732
|
-
a(?x, j565) :- a(?x, n564).
|
|
1733
|
-
a(?x, n566) :- a(?x, n565).
|
|
1734
|
-
a(?x, i566) :- a(?x, n565).
|
|
1735
|
-
a(?x, j566) :- a(?x, n565).
|
|
1736
|
-
a(?x, n567) :- a(?x, n566).
|
|
1737
|
-
a(?x, i567) :- a(?x, n566).
|
|
1738
|
-
a(?x, j567) :- a(?x, n566).
|
|
1739
|
-
a(?x, n568) :- a(?x, n567).
|
|
1740
|
-
a(?x, i568) :- a(?x, n567).
|
|
1741
|
-
a(?x, j568) :- a(?x, n567).
|
|
1742
|
-
a(?x, n569) :- a(?x, n568).
|
|
1743
|
-
a(?x, i569) :- a(?x, n568).
|
|
1744
|
-
a(?x, j569) :- a(?x, n568).
|
|
1745
|
-
a(?x, n570) :- a(?x, n569).
|
|
1746
|
-
a(?x, i570) :- a(?x, n569).
|
|
1747
|
-
a(?x, j570) :- a(?x, n569).
|
|
1748
|
-
a(?x, n571) :- a(?x, n570).
|
|
1749
|
-
a(?x, i571) :- a(?x, n570).
|
|
1750
|
-
a(?x, j571) :- a(?x, n570).
|
|
1751
|
-
a(?x, n572) :- a(?x, n571).
|
|
1752
|
-
a(?x, i572) :- a(?x, n571).
|
|
1753
|
-
a(?x, j572) :- a(?x, n571).
|
|
1754
|
-
a(?x, n573) :- a(?x, n572).
|
|
1755
|
-
a(?x, i573) :- a(?x, n572).
|
|
1756
|
-
a(?x, j573) :- a(?x, n572).
|
|
1757
|
-
a(?x, n574) :- a(?x, n573).
|
|
1758
|
-
a(?x, i574) :- a(?x, n573).
|
|
1759
|
-
a(?x, j574) :- a(?x, n573).
|
|
1760
|
-
a(?x, n575) :- a(?x, n574).
|
|
1761
|
-
a(?x, i575) :- a(?x, n574).
|
|
1762
|
-
a(?x, j575) :- a(?x, n574).
|
|
1763
|
-
a(?x, n576) :- a(?x, n575).
|
|
1764
|
-
a(?x, i576) :- a(?x, n575).
|
|
1765
|
-
a(?x, j576) :- a(?x, n575).
|
|
1766
|
-
a(?x, n577) :- a(?x, n576).
|
|
1767
|
-
a(?x, i577) :- a(?x, n576).
|
|
1768
|
-
a(?x, j577) :- a(?x, n576).
|
|
1769
|
-
a(?x, n578) :- a(?x, n577).
|
|
1770
|
-
a(?x, i578) :- a(?x, n577).
|
|
1771
|
-
a(?x, j578) :- a(?x, n577).
|
|
1772
|
-
a(?x, n579) :- a(?x, n578).
|
|
1773
|
-
a(?x, i579) :- a(?x, n578).
|
|
1774
|
-
a(?x, j579) :- a(?x, n578).
|
|
1775
|
-
a(?x, n580) :- a(?x, n579).
|
|
1776
|
-
a(?x, i580) :- a(?x, n579).
|
|
1777
|
-
a(?x, j580) :- a(?x, n579).
|
|
1778
|
-
a(?x, n581) :- a(?x, n580).
|
|
1779
|
-
a(?x, i581) :- a(?x, n580).
|
|
1780
|
-
a(?x, j581) :- a(?x, n580).
|
|
1781
|
-
a(?x, n582) :- a(?x, n581).
|
|
1782
|
-
a(?x, i582) :- a(?x, n581).
|
|
1783
|
-
a(?x, j582) :- a(?x, n581).
|
|
1784
|
-
a(?x, n583) :- a(?x, n582).
|
|
1785
|
-
a(?x, i583) :- a(?x, n582).
|
|
1786
|
-
a(?x, j583) :- a(?x, n582).
|
|
1787
|
-
a(?x, n584) :- a(?x, n583).
|
|
1788
|
-
a(?x, i584) :- a(?x, n583).
|
|
1789
|
-
a(?x, j584) :- a(?x, n583).
|
|
1790
|
-
a(?x, n585) :- a(?x, n584).
|
|
1791
|
-
a(?x, i585) :- a(?x, n584).
|
|
1792
|
-
a(?x, j585) :- a(?x, n584).
|
|
1793
|
-
a(?x, n586) :- a(?x, n585).
|
|
1794
|
-
a(?x, i586) :- a(?x, n585).
|
|
1795
|
-
a(?x, j586) :- a(?x, n585).
|
|
1796
|
-
a(?x, n587) :- a(?x, n586).
|
|
1797
|
-
a(?x, i587) :- a(?x, n586).
|
|
1798
|
-
a(?x, j587) :- a(?x, n586).
|
|
1799
|
-
a(?x, n588) :- a(?x, n587).
|
|
1800
|
-
a(?x, i588) :- a(?x, n587).
|
|
1801
|
-
a(?x, j588) :- a(?x, n587).
|
|
1802
|
-
a(?x, n589) :- a(?x, n588).
|
|
1803
|
-
a(?x, i589) :- a(?x, n588).
|
|
1804
|
-
a(?x, j589) :- a(?x, n588).
|
|
1805
|
-
a(?x, n590) :- a(?x, n589).
|
|
1806
|
-
a(?x, i590) :- a(?x, n589).
|
|
1807
|
-
a(?x, j590) :- a(?x, n589).
|
|
1808
|
-
a(?x, n591) :- a(?x, n590).
|
|
1809
|
-
a(?x, i591) :- a(?x, n590).
|
|
1810
|
-
a(?x, j591) :- a(?x, n590).
|
|
1811
|
-
a(?x, n592) :- a(?x, n591).
|
|
1812
|
-
a(?x, i592) :- a(?x, n591).
|
|
1813
|
-
a(?x, j592) :- a(?x, n591).
|
|
1814
|
-
a(?x, n593) :- a(?x, n592).
|
|
1815
|
-
a(?x, i593) :- a(?x, n592).
|
|
1816
|
-
a(?x, j593) :- a(?x, n592).
|
|
1817
|
-
a(?x, n594) :- a(?x, n593).
|
|
1818
|
-
a(?x, i594) :- a(?x, n593).
|
|
1819
|
-
a(?x, j594) :- a(?x, n593).
|
|
1820
|
-
a(?x, n595) :- a(?x, n594).
|
|
1821
|
-
a(?x, i595) :- a(?x, n594).
|
|
1822
|
-
a(?x, j595) :- a(?x, n594).
|
|
1823
|
-
a(?x, n596) :- a(?x, n595).
|
|
1824
|
-
a(?x, i596) :- a(?x, n595).
|
|
1825
|
-
a(?x, j596) :- a(?x, n595).
|
|
1826
|
-
a(?x, n597) :- a(?x, n596).
|
|
1827
|
-
a(?x, i597) :- a(?x, n596).
|
|
1828
|
-
a(?x, j597) :- a(?x, n596).
|
|
1829
|
-
a(?x, n598) :- a(?x, n597).
|
|
1830
|
-
a(?x, i598) :- a(?x, n597).
|
|
1831
|
-
a(?x, j598) :- a(?x, n597).
|
|
1832
|
-
a(?x, n599) :- a(?x, n598).
|
|
1833
|
-
a(?x, i599) :- a(?x, n598).
|
|
1834
|
-
a(?x, j599) :- a(?x, n598).
|
|
1835
|
-
a(?x, n600) :- a(?x, n599).
|
|
1836
|
-
a(?x, i600) :- a(?x, n599).
|
|
1837
|
-
a(?x, j600) :- a(?x, n599).
|
|
1838
|
-
a(?x, n601) :- a(?x, n600).
|
|
1839
|
-
a(?x, i601) :- a(?x, n600).
|
|
1840
|
-
a(?x, j601) :- a(?x, n600).
|
|
1841
|
-
a(?x, n602) :- a(?x, n601).
|
|
1842
|
-
a(?x, i602) :- a(?x, n601).
|
|
1843
|
-
a(?x, j602) :- a(?x, n601).
|
|
1844
|
-
a(?x, n603) :- a(?x, n602).
|
|
1845
|
-
a(?x, i603) :- a(?x, n602).
|
|
1846
|
-
a(?x, j603) :- a(?x, n602).
|
|
1847
|
-
a(?x, n604) :- a(?x, n603).
|
|
1848
|
-
a(?x, i604) :- a(?x, n603).
|
|
1849
|
-
a(?x, j604) :- a(?x, n603).
|
|
1850
|
-
a(?x, n605) :- a(?x, n604).
|
|
1851
|
-
a(?x, i605) :- a(?x, n604).
|
|
1852
|
-
a(?x, j605) :- a(?x, n604).
|
|
1853
|
-
a(?x, n606) :- a(?x, n605).
|
|
1854
|
-
a(?x, i606) :- a(?x, n605).
|
|
1855
|
-
a(?x, j606) :- a(?x, n605).
|
|
1856
|
-
a(?x, n607) :- a(?x, n606).
|
|
1857
|
-
a(?x, i607) :- a(?x, n606).
|
|
1858
|
-
a(?x, j607) :- a(?x, n606).
|
|
1859
|
-
a(?x, n608) :- a(?x, n607).
|
|
1860
|
-
a(?x, i608) :- a(?x, n607).
|
|
1861
|
-
a(?x, j608) :- a(?x, n607).
|
|
1862
|
-
a(?x, n609) :- a(?x, n608).
|
|
1863
|
-
a(?x, i609) :- a(?x, n608).
|
|
1864
|
-
a(?x, j609) :- a(?x, n608).
|
|
1865
|
-
a(?x, n610) :- a(?x, n609).
|
|
1866
|
-
a(?x, i610) :- a(?x, n609).
|
|
1867
|
-
a(?x, j610) :- a(?x, n609).
|
|
1868
|
-
a(?x, n611) :- a(?x, n610).
|
|
1869
|
-
a(?x, i611) :- a(?x, n610).
|
|
1870
|
-
a(?x, j611) :- a(?x, n610).
|
|
1871
|
-
a(?x, n612) :- a(?x, n611).
|
|
1872
|
-
a(?x, i612) :- a(?x, n611).
|
|
1873
|
-
a(?x, j612) :- a(?x, n611).
|
|
1874
|
-
a(?x, n613) :- a(?x, n612).
|
|
1875
|
-
a(?x, i613) :- a(?x, n612).
|
|
1876
|
-
a(?x, j613) :- a(?x, n612).
|
|
1877
|
-
a(?x, n614) :- a(?x, n613).
|
|
1878
|
-
a(?x, i614) :- a(?x, n613).
|
|
1879
|
-
a(?x, j614) :- a(?x, n613).
|
|
1880
|
-
a(?x, n615) :- a(?x, n614).
|
|
1881
|
-
a(?x, i615) :- a(?x, n614).
|
|
1882
|
-
a(?x, j615) :- a(?x, n614).
|
|
1883
|
-
a(?x, n616) :- a(?x, n615).
|
|
1884
|
-
a(?x, i616) :- a(?x, n615).
|
|
1885
|
-
a(?x, j616) :- a(?x, n615).
|
|
1886
|
-
a(?x, n617) :- a(?x, n616).
|
|
1887
|
-
a(?x, i617) :- a(?x, n616).
|
|
1888
|
-
a(?x, j617) :- a(?x, n616).
|
|
1889
|
-
a(?x, n618) :- a(?x, n617).
|
|
1890
|
-
a(?x, i618) :- a(?x, n617).
|
|
1891
|
-
a(?x, j618) :- a(?x, n617).
|
|
1892
|
-
a(?x, n619) :- a(?x, n618).
|
|
1893
|
-
a(?x, i619) :- a(?x, n618).
|
|
1894
|
-
a(?x, j619) :- a(?x, n618).
|
|
1895
|
-
a(?x, n620) :- a(?x, n619).
|
|
1896
|
-
a(?x, i620) :- a(?x, n619).
|
|
1897
|
-
a(?x, j620) :- a(?x, n619).
|
|
1898
|
-
a(?x, n621) :- a(?x, n620).
|
|
1899
|
-
a(?x, i621) :- a(?x, n620).
|
|
1900
|
-
a(?x, j621) :- a(?x, n620).
|
|
1901
|
-
a(?x, n622) :- a(?x, n621).
|
|
1902
|
-
a(?x, i622) :- a(?x, n621).
|
|
1903
|
-
a(?x, j622) :- a(?x, n621).
|
|
1904
|
-
a(?x, n623) :- a(?x, n622).
|
|
1905
|
-
a(?x, i623) :- a(?x, n622).
|
|
1906
|
-
a(?x, j623) :- a(?x, n622).
|
|
1907
|
-
a(?x, n624) :- a(?x, n623).
|
|
1908
|
-
a(?x, i624) :- a(?x, n623).
|
|
1909
|
-
a(?x, j624) :- a(?x, n623).
|
|
1910
|
-
a(?x, n625) :- a(?x, n624).
|
|
1911
|
-
a(?x, i625) :- a(?x, n624).
|
|
1912
|
-
a(?x, j625) :- a(?x, n624).
|
|
1913
|
-
a(?x, n626) :- a(?x, n625).
|
|
1914
|
-
a(?x, i626) :- a(?x, n625).
|
|
1915
|
-
a(?x, j626) :- a(?x, n625).
|
|
1916
|
-
a(?x, n627) :- a(?x, n626).
|
|
1917
|
-
a(?x, i627) :- a(?x, n626).
|
|
1918
|
-
a(?x, j627) :- a(?x, n626).
|
|
1919
|
-
a(?x, n628) :- a(?x, n627).
|
|
1920
|
-
a(?x, i628) :- a(?x, n627).
|
|
1921
|
-
a(?x, j628) :- a(?x, n627).
|
|
1922
|
-
a(?x, n629) :- a(?x, n628).
|
|
1923
|
-
a(?x, i629) :- a(?x, n628).
|
|
1924
|
-
a(?x, j629) :- a(?x, n628).
|
|
1925
|
-
a(?x, n630) :- a(?x, n629).
|
|
1926
|
-
a(?x, i630) :- a(?x, n629).
|
|
1927
|
-
a(?x, j630) :- a(?x, n629).
|
|
1928
|
-
a(?x, n631) :- a(?x, n630).
|
|
1929
|
-
a(?x, i631) :- a(?x, n630).
|
|
1930
|
-
a(?x, j631) :- a(?x, n630).
|
|
1931
|
-
a(?x, n632) :- a(?x, n631).
|
|
1932
|
-
a(?x, i632) :- a(?x, n631).
|
|
1933
|
-
a(?x, j632) :- a(?x, n631).
|
|
1934
|
-
a(?x, n633) :- a(?x, n632).
|
|
1935
|
-
a(?x, i633) :- a(?x, n632).
|
|
1936
|
-
a(?x, j633) :- a(?x, n632).
|
|
1937
|
-
a(?x, n634) :- a(?x, n633).
|
|
1938
|
-
a(?x, i634) :- a(?x, n633).
|
|
1939
|
-
a(?x, j634) :- a(?x, n633).
|
|
1940
|
-
a(?x, n635) :- a(?x, n634).
|
|
1941
|
-
a(?x, i635) :- a(?x, n634).
|
|
1942
|
-
a(?x, j635) :- a(?x, n634).
|
|
1943
|
-
a(?x, n636) :- a(?x, n635).
|
|
1944
|
-
a(?x, i636) :- a(?x, n635).
|
|
1945
|
-
a(?x, j636) :- a(?x, n635).
|
|
1946
|
-
a(?x, n637) :- a(?x, n636).
|
|
1947
|
-
a(?x, i637) :- a(?x, n636).
|
|
1948
|
-
a(?x, j637) :- a(?x, n636).
|
|
1949
|
-
a(?x, n638) :- a(?x, n637).
|
|
1950
|
-
a(?x, i638) :- a(?x, n637).
|
|
1951
|
-
a(?x, j638) :- a(?x, n637).
|
|
1952
|
-
a(?x, n639) :- a(?x, n638).
|
|
1953
|
-
a(?x, i639) :- a(?x, n638).
|
|
1954
|
-
a(?x, j639) :- a(?x, n638).
|
|
1955
|
-
a(?x, n640) :- a(?x, n639).
|
|
1956
|
-
a(?x, i640) :- a(?x, n639).
|
|
1957
|
-
a(?x, j640) :- a(?x, n639).
|
|
1958
|
-
a(?x, n641) :- a(?x, n640).
|
|
1959
|
-
a(?x, i641) :- a(?x, n640).
|
|
1960
|
-
a(?x, j641) :- a(?x, n640).
|
|
1961
|
-
a(?x, n642) :- a(?x, n641).
|
|
1962
|
-
a(?x, i642) :- a(?x, n641).
|
|
1963
|
-
a(?x, j642) :- a(?x, n641).
|
|
1964
|
-
a(?x, n643) :- a(?x, n642).
|
|
1965
|
-
a(?x, i643) :- a(?x, n642).
|
|
1966
|
-
a(?x, j643) :- a(?x, n642).
|
|
1967
|
-
a(?x, n644) :- a(?x, n643).
|
|
1968
|
-
a(?x, i644) :- a(?x, n643).
|
|
1969
|
-
a(?x, j644) :- a(?x, n643).
|
|
1970
|
-
a(?x, n645) :- a(?x, n644).
|
|
1971
|
-
a(?x, i645) :- a(?x, n644).
|
|
1972
|
-
a(?x, j645) :- a(?x, n644).
|
|
1973
|
-
a(?x, n646) :- a(?x, n645).
|
|
1974
|
-
a(?x, i646) :- a(?x, n645).
|
|
1975
|
-
a(?x, j646) :- a(?x, n645).
|
|
1976
|
-
a(?x, n647) :- a(?x, n646).
|
|
1977
|
-
a(?x, i647) :- a(?x, n646).
|
|
1978
|
-
a(?x, j647) :- a(?x, n646).
|
|
1979
|
-
a(?x, n648) :- a(?x, n647).
|
|
1980
|
-
a(?x, i648) :- a(?x, n647).
|
|
1981
|
-
a(?x, j648) :- a(?x, n647).
|
|
1982
|
-
a(?x, n649) :- a(?x, n648).
|
|
1983
|
-
a(?x, i649) :- a(?x, n648).
|
|
1984
|
-
a(?x, j649) :- a(?x, n648).
|
|
1985
|
-
a(?x, n650) :- a(?x, n649).
|
|
1986
|
-
a(?x, i650) :- a(?x, n649).
|
|
1987
|
-
a(?x, j650) :- a(?x, n649).
|
|
1988
|
-
a(?x, n651) :- a(?x, n650).
|
|
1989
|
-
a(?x, i651) :- a(?x, n650).
|
|
1990
|
-
a(?x, j651) :- a(?x, n650).
|
|
1991
|
-
a(?x, n652) :- a(?x, n651).
|
|
1992
|
-
a(?x, i652) :- a(?x, n651).
|
|
1993
|
-
a(?x, j652) :- a(?x, n651).
|
|
1994
|
-
a(?x, n653) :- a(?x, n652).
|
|
1995
|
-
a(?x, i653) :- a(?x, n652).
|
|
1996
|
-
a(?x, j653) :- a(?x, n652).
|
|
1997
|
-
a(?x, n654) :- a(?x, n653).
|
|
1998
|
-
a(?x, i654) :- a(?x, n653).
|
|
1999
|
-
a(?x, j654) :- a(?x, n653).
|
|
2000
|
-
a(?x, n655) :- a(?x, n654).
|
|
2001
|
-
a(?x, i655) :- a(?x, n654).
|
|
2002
|
-
a(?x, j655) :- a(?x, n654).
|
|
2003
|
-
a(?x, n656) :- a(?x, n655).
|
|
2004
|
-
a(?x, i656) :- a(?x, n655).
|
|
2005
|
-
a(?x, j656) :- a(?x, n655).
|
|
2006
|
-
a(?x, n657) :- a(?x, n656).
|
|
2007
|
-
a(?x, i657) :- a(?x, n656).
|
|
2008
|
-
a(?x, j657) :- a(?x, n656).
|
|
2009
|
-
a(?x, n658) :- a(?x, n657).
|
|
2010
|
-
a(?x, i658) :- a(?x, n657).
|
|
2011
|
-
a(?x, j658) :- a(?x, n657).
|
|
2012
|
-
a(?x, n659) :- a(?x, n658).
|
|
2013
|
-
a(?x, i659) :- a(?x, n658).
|
|
2014
|
-
a(?x, j659) :- a(?x, n658).
|
|
2015
|
-
a(?x, n660) :- a(?x, n659).
|
|
2016
|
-
a(?x, i660) :- a(?x, n659).
|
|
2017
|
-
a(?x, j660) :- a(?x, n659).
|
|
2018
|
-
a(?x, n661) :- a(?x, n660).
|
|
2019
|
-
a(?x, i661) :- a(?x, n660).
|
|
2020
|
-
a(?x, j661) :- a(?x, n660).
|
|
2021
|
-
a(?x, n662) :- a(?x, n661).
|
|
2022
|
-
a(?x, i662) :- a(?x, n661).
|
|
2023
|
-
a(?x, j662) :- a(?x, n661).
|
|
2024
|
-
a(?x, n663) :- a(?x, n662).
|
|
2025
|
-
a(?x, i663) :- a(?x, n662).
|
|
2026
|
-
a(?x, j663) :- a(?x, n662).
|
|
2027
|
-
a(?x, n664) :- a(?x, n663).
|
|
2028
|
-
a(?x, i664) :- a(?x, n663).
|
|
2029
|
-
a(?x, j664) :- a(?x, n663).
|
|
2030
|
-
a(?x, n665) :- a(?x, n664).
|
|
2031
|
-
a(?x, i665) :- a(?x, n664).
|
|
2032
|
-
a(?x, j665) :- a(?x, n664).
|
|
2033
|
-
a(?x, n666) :- a(?x, n665).
|
|
2034
|
-
a(?x, i666) :- a(?x, n665).
|
|
2035
|
-
a(?x, j666) :- a(?x, n665).
|
|
2036
|
-
a(?x, n667) :- a(?x, n666).
|
|
2037
|
-
a(?x, i667) :- a(?x, n666).
|
|
2038
|
-
a(?x, j667) :- a(?x, n666).
|
|
2039
|
-
a(?x, n668) :- a(?x, n667).
|
|
2040
|
-
a(?x, i668) :- a(?x, n667).
|
|
2041
|
-
a(?x, j668) :- a(?x, n667).
|
|
2042
|
-
a(?x, n669) :- a(?x, n668).
|
|
2043
|
-
a(?x, i669) :- a(?x, n668).
|
|
2044
|
-
a(?x, j669) :- a(?x, n668).
|
|
2045
|
-
a(?x, n670) :- a(?x, n669).
|
|
2046
|
-
a(?x, i670) :- a(?x, n669).
|
|
2047
|
-
a(?x, j670) :- a(?x, n669).
|
|
2048
|
-
a(?x, n671) :- a(?x, n670).
|
|
2049
|
-
a(?x, i671) :- a(?x, n670).
|
|
2050
|
-
a(?x, j671) :- a(?x, n670).
|
|
2051
|
-
a(?x, n672) :- a(?x, n671).
|
|
2052
|
-
a(?x, i672) :- a(?x, n671).
|
|
2053
|
-
a(?x, j672) :- a(?x, n671).
|
|
2054
|
-
a(?x, n673) :- a(?x, n672).
|
|
2055
|
-
a(?x, i673) :- a(?x, n672).
|
|
2056
|
-
a(?x, j673) :- a(?x, n672).
|
|
2057
|
-
a(?x, n674) :- a(?x, n673).
|
|
2058
|
-
a(?x, i674) :- a(?x, n673).
|
|
2059
|
-
a(?x, j674) :- a(?x, n673).
|
|
2060
|
-
a(?x, n675) :- a(?x, n674).
|
|
2061
|
-
a(?x, i675) :- a(?x, n674).
|
|
2062
|
-
a(?x, j675) :- a(?x, n674).
|
|
2063
|
-
a(?x, n676) :- a(?x, n675).
|
|
2064
|
-
a(?x, i676) :- a(?x, n675).
|
|
2065
|
-
a(?x, j676) :- a(?x, n675).
|
|
2066
|
-
a(?x, n677) :- a(?x, n676).
|
|
2067
|
-
a(?x, i677) :- a(?x, n676).
|
|
2068
|
-
a(?x, j677) :- a(?x, n676).
|
|
2069
|
-
a(?x, n678) :- a(?x, n677).
|
|
2070
|
-
a(?x, i678) :- a(?x, n677).
|
|
2071
|
-
a(?x, j678) :- a(?x, n677).
|
|
2072
|
-
a(?x, n679) :- a(?x, n678).
|
|
2073
|
-
a(?x, i679) :- a(?x, n678).
|
|
2074
|
-
a(?x, j679) :- a(?x, n678).
|
|
2075
|
-
a(?x, n680) :- a(?x, n679).
|
|
2076
|
-
a(?x, i680) :- a(?x, n679).
|
|
2077
|
-
a(?x, j680) :- a(?x, n679).
|
|
2078
|
-
a(?x, n681) :- a(?x, n680).
|
|
2079
|
-
a(?x, i681) :- a(?x, n680).
|
|
2080
|
-
a(?x, j681) :- a(?x, n680).
|
|
2081
|
-
a(?x, n682) :- a(?x, n681).
|
|
2082
|
-
a(?x, i682) :- a(?x, n681).
|
|
2083
|
-
a(?x, j682) :- a(?x, n681).
|
|
2084
|
-
a(?x, n683) :- a(?x, n682).
|
|
2085
|
-
a(?x, i683) :- a(?x, n682).
|
|
2086
|
-
a(?x, j683) :- a(?x, n682).
|
|
2087
|
-
a(?x, n684) :- a(?x, n683).
|
|
2088
|
-
a(?x, i684) :- a(?x, n683).
|
|
2089
|
-
a(?x, j684) :- a(?x, n683).
|
|
2090
|
-
a(?x, n685) :- a(?x, n684).
|
|
2091
|
-
a(?x, i685) :- a(?x, n684).
|
|
2092
|
-
a(?x, j685) :- a(?x, n684).
|
|
2093
|
-
a(?x, n686) :- a(?x, n685).
|
|
2094
|
-
a(?x, i686) :- a(?x, n685).
|
|
2095
|
-
a(?x, j686) :- a(?x, n685).
|
|
2096
|
-
a(?x, n687) :- a(?x, n686).
|
|
2097
|
-
a(?x, i687) :- a(?x, n686).
|
|
2098
|
-
a(?x, j687) :- a(?x, n686).
|
|
2099
|
-
a(?x, n688) :- a(?x, n687).
|
|
2100
|
-
a(?x, i688) :- a(?x, n687).
|
|
2101
|
-
a(?x, j688) :- a(?x, n687).
|
|
2102
|
-
a(?x, n689) :- a(?x, n688).
|
|
2103
|
-
a(?x, i689) :- a(?x, n688).
|
|
2104
|
-
a(?x, j689) :- a(?x, n688).
|
|
2105
|
-
a(?x, n690) :- a(?x, n689).
|
|
2106
|
-
a(?x, i690) :- a(?x, n689).
|
|
2107
|
-
a(?x, j690) :- a(?x, n689).
|
|
2108
|
-
a(?x, n691) :- a(?x, n690).
|
|
2109
|
-
a(?x, i691) :- a(?x, n690).
|
|
2110
|
-
a(?x, j691) :- a(?x, n690).
|
|
2111
|
-
a(?x, n692) :- a(?x, n691).
|
|
2112
|
-
a(?x, i692) :- a(?x, n691).
|
|
2113
|
-
a(?x, j692) :- a(?x, n691).
|
|
2114
|
-
a(?x, n693) :- a(?x, n692).
|
|
2115
|
-
a(?x, i693) :- a(?x, n692).
|
|
2116
|
-
a(?x, j693) :- a(?x, n692).
|
|
2117
|
-
a(?x, n694) :- a(?x, n693).
|
|
2118
|
-
a(?x, i694) :- a(?x, n693).
|
|
2119
|
-
a(?x, j694) :- a(?x, n693).
|
|
2120
|
-
a(?x, n695) :- a(?x, n694).
|
|
2121
|
-
a(?x, i695) :- a(?x, n694).
|
|
2122
|
-
a(?x, j695) :- a(?x, n694).
|
|
2123
|
-
a(?x, n696) :- a(?x, n695).
|
|
2124
|
-
a(?x, i696) :- a(?x, n695).
|
|
2125
|
-
a(?x, j696) :- a(?x, n695).
|
|
2126
|
-
a(?x, n697) :- a(?x, n696).
|
|
2127
|
-
a(?x, i697) :- a(?x, n696).
|
|
2128
|
-
a(?x, j697) :- a(?x, n696).
|
|
2129
|
-
a(?x, n698) :- a(?x, n697).
|
|
2130
|
-
a(?x, i698) :- a(?x, n697).
|
|
2131
|
-
a(?x, j698) :- a(?x, n697).
|
|
2132
|
-
a(?x, n699) :- a(?x, n698).
|
|
2133
|
-
a(?x, i699) :- a(?x, n698).
|
|
2134
|
-
a(?x, j699) :- a(?x, n698).
|
|
2135
|
-
a(?x, n700) :- a(?x, n699).
|
|
2136
|
-
a(?x, i700) :- a(?x, n699).
|
|
2137
|
-
a(?x, j700) :- a(?x, n699).
|
|
2138
|
-
a(?x, n701) :- a(?x, n700).
|
|
2139
|
-
a(?x, i701) :- a(?x, n700).
|
|
2140
|
-
a(?x, j701) :- a(?x, n700).
|
|
2141
|
-
a(?x, n702) :- a(?x, n701).
|
|
2142
|
-
a(?x, i702) :- a(?x, n701).
|
|
2143
|
-
a(?x, j702) :- a(?x, n701).
|
|
2144
|
-
a(?x, n703) :- a(?x, n702).
|
|
2145
|
-
a(?x, i703) :- a(?x, n702).
|
|
2146
|
-
a(?x, j703) :- a(?x, n702).
|
|
2147
|
-
a(?x, n704) :- a(?x, n703).
|
|
2148
|
-
a(?x, i704) :- a(?x, n703).
|
|
2149
|
-
a(?x, j704) :- a(?x, n703).
|
|
2150
|
-
a(?x, n705) :- a(?x, n704).
|
|
2151
|
-
a(?x, i705) :- a(?x, n704).
|
|
2152
|
-
a(?x, j705) :- a(?x, n704).
|
|
2153
|
-
a(?x, n706) :- a(?x, n705).
|
|
2154
|
-
a(?x, i706) :- a(?x, n705).
|
|
2155
|
-
a(?x, j706) :- a(?x, n705).
|
|
2156
|
-
a(?x, n707) :- a(?x, n706).
|
|
2157
|
-
a(?x, i707) :- a(?x, n706).
|
|
2158
|
-
a(?x, j707) :- a(?x, n706).
|
|
2159
|
-
a(?x, n708) :- a(?x, n707).
|
|
2160
|
-
a(?x, i708) :- a(?x, n707).
|
|
2161
|
-
a(?x, j708) :- a(?x, n707).
|
|
2162
|
-
a(?x, n709) :- a(?x, n708).
|
|
2163
|
-
a(?x, i709) :- a(?x, n708).
|
|
2164
|
-
a(?x, j709) :- a(?x, n708).
|
|
2165
|
-
a(?x, n710) :- a(?x, n709).
|
|
2166
|
-
a(?x, i710) :- a(?x, n709).
|
|
2167
|
-
a(?x, j710) :- a(?x, n709).
|
|
2168
|
-
a(?x, n711) :- a(?x, n710).
|
|
2169
|
-
a(?x, i711) :- a(?x, n710).
|
|
2170
|
-
a(?x, j711) :- a(?x, n710).
|
|
2171
|
-
a(?x, n712) :- a(?x, n711).
|
|
2172
|
-
a(?x, i712) :- a(?x, n711).
|
|
2173
|
-
a(?x, j712) :- a(?x, n711).
|
|
2174
|
-
a(?x, n713) :- a(?x, n712).
|
|
2175
|
-
a(?x, i713) :- a(?x, n712).
|
|
2176
|
-
a(?x, j713) :- a(?x, n712).
|
|
2177
|
-
a(?x, n714) :- a(?x, n713).
|
|
2178
|
-
a(?x, i714) :- a(?x, n713).
|
|
2179
|
-
a(?x, j714) :- a(?x, n713).
|
|
2180
|
-
a(?x, n715) :- a(?x, n714).
|
|
2181
|
-
a(?x, i715) :- a(?x, n714).
|
|
2182
|
-
a(?x, j715) :- a(?x, n714).
|
|
2183
|
-
a(?x, n716) :- a(?x, n715).
|
|
2184
|
-
a(?x, i716) :- a(?x, n715).
|
|
2185
|
-
a(?x, j716) :- a(?x, n715).
|
|
2186
|
-
a(?x, n717) :- a(?x, n716).
|
|
2187
|
-
a(?x, i717) :- a(?x, n716).
|
|
2188
|
-
a(?x, j717) :- a(?x, n716).
|
|
2189
|
-
a(?x, n718) :- a(?x, n717).
|
|
2190
|
-
a(?x, i718) :- a(?x, n717).
|
|
2191
|
-
a(?x, j718) :- a(?x, n717).
|
|
2192
|
-
a(?x, n719) :- a(?x, n718).
|
|
2193
|
-
a(?x, i719) :- a(?x, n718).
|
|
2194
|
-
a(?x, j719) :- a(?x, n718).
|
|
2195
|
-
a(?x, n720) :- a(?x, n719).
|
|
2196
|
-
a(?x, i720) :- a(?x, n719).
|
|
2197
|
-
a(?x, j720) :- a(?x, n719).
|
|
2198
|
-
a(?x, n721) :- a(?x, n720).
|
|
2199
|
-
a(?x, i721) :- a(?x, n720).
|
|
2200
|
-
a(?x, j721) :- a(?x, n720).
|
|
2201
|
-
a(?x, n722) :- a(?x, n721).
|
|
2202
|
-
a(?x, i722) :- a(?x, n721).
|
|
2203
|
-
a(?x, j722) :- a(?x, n721).
|
|
2204
|
-
a(?x, n723) :- a(?x, n722).
|
|
2205
|
-
a(?x, i723) :- a(?x, n722).
|
|
2206
|
-
a(?x, j723) :- a(?x, n722).
|
|
2207
|
-
a(?x, n724) :- a(?x, n723).
|
|
2208
|
-
a(?x, i724) :- a(?x, n723).
|
|
2209
|
-
a(?x, j724) :- a(?x, n723).
|
|
2210
|
-
a(?x, n725) :- a(?x, n724).
|
|
2211
|
-
a(?x, i725) :- a(?x, n724).
|
|
2212
|
-
a(?x, j725) :- a(?x, n724).
|
|
2213
|
-
a(?x, n726) :- a(?x, n725).
|
|
2214
|
-
a(?x, i726) :- a(?x, n725).
|
|
2215
|
-
a(?x, j726) :- a(?x, n725).
|
|
2216
|
-
a(?x, n727) :- a(?x, n726).
|
|
2217
|
-
a(?x, i727) :- a(?x, n726).
|
|
2218
|
-
a(?x, j727) :- a(?x, n726).
|
|
2219
|
-
a(?x, n728) :- a(?x, n727).
|
|
2220
|
-
a(?x, i728) :- a(?x, n727).
|
|
2221
|
-
a(?x, j728) :- a(?x, n727).
|
|
2222
|
-
a(?x, n729) :- a(?x, n728).
|
|
2223
|
-
a(?x, i729) :- a(?x, n728).
|
|
2224
|
-
a(?x, j729) :- a(?x, n728).
|
|
2225
|
-
a(?x, n730) :- a(?x, n729).
|
|
2226
|
-
a(?x, i730) :- a(?x, n729).
|
|
2227
|
-
a(?x, j730) :- a(?x, n729).
|
|
2228
|
-
a(?x, n731) :- a(?x, n730).
|
|
2229
|
-
a(?x, i731) :- a(?x, n730).
|
|
2230
|
-
a(?x, j731) :- a(?x, n730).
|
|
2231
|
-
a(?x, n732) :- a(?x, n731).
|
|
2232
|
-
a(?x, i732) :- a(?x, n731).
|
|
2233
|
-
a(?x, j732) :- a(?x, n731).
|
|
2234
|
-
a(?x, n733) :- a(?x, n732).
|
|
2235
|
-
a(?x, i733) :- a(?x, n732).
|
|
2236
|
-
a(?x, j733) :- a(?x, n732).
|
|
2237
|
-
a(?x, n734) :- a(?x, n733).
|
|
2238
|
-
a(?x, i734) :- a(?x, n733).
|
|
2239
|
-
a(?x, j734) :- a(?x, n733).
|
|
2240
|
-
a(?x, n735) :- a(?x, n734).
|
|
2241
|
-
a(?x, i735) :- a(?x, n734).
|
|
2242
|
-
a(?x, j735) :- a(?x, n734).
|
|
2243
|
-
a(?x, n736) :- a(?x, n735).
|
|
2244
|
-
a(?x, i736) :- a(?x, n735).
|
|
2245
|
-
a(?x, j736) :- a(?x, n735).
|
|
2246
|
-
a(?x, n737) :- a(?x, n736).
|
|
2247
|
-
a(?x, i737) :- a(?x, n736).
|
|
2248
|
-
a(?x, j737) :- a(?x, n736).
|
|
2249
|
-
a(?x, n738) :- a(?x, n737).
|
|
2250
|
-
a(?x, i738) :- a(?x, n737).
|
|
2251
|
-
a(?x, j738) :- a(?x, n737).
|
|
2252
|
-
a(?x, n739) :- a(?x, n738).
|
|
2253
|
-
a(?x, i739) :- a(?x, n738).
|
|
2254
|
-
a(?x, j739) :- a(?x, n738).
|
|
2255
|
-
a(?x, n740) :- a(?x, n739).
|
|
2256
|
-
a(?x, i740) :- a(?x, n739).
|
|
2257
|
-
a(?x, j740) :- a(?x, n739).
|
|
2258
|
-
a(?x, n741) :- a(?x, n740).
|
|
2259
|
-
a(?x, i741) :- a(?x, n740).
|
|
2260
|
-
a(?x, j741) :- a(?x, n740).
|
|
2261
|
-
a(?x, n742) :- a(?x, n741).
|
|
2262
|
-
a(?x, i742) :- a(?x, n741).
|
|
2263
|
-
a(?x, j742) :- a(?x, n741).
|
|
2264
|
-
a(?x, n743) :- a(?x, n742).
|
|
2265
|
-
a(?x, i743) :- a(?x, n742).
|
|
2266
|
-
a(?x, j743) :- a(?x, n742).
|
|
2267
|
-
a(?x, n744) :- a(?x, n743).
|
|
2268
|
-
a(?x, i744) :- a(?x, n743).
|
|
2269
|
-
a(?x, j744) :- a(?x, n743).
|
|
2270
|
-
a(?x, n745) :- a(?x, n744).
|
|
2271
|
-
a(?x, i745) :- a(?x, n744).
|
|
2272
|
-
a(?x, j745) :- a(?x, n744).
|
|
2273
|
-
a(?x, n746) :- a(?x, n745).
|
|
2274
|
-
a(?x, i746) :- a(?x, n745).
|
|
2275
|
-
a(?x, j746) :- a(?x, n745).
|
|
2276
|
-
a(?x, n747) :- a(?x, n746).
|
|
2277
|
-
a(?x, i747) :- a(?x, n746).
|
|
2278
|
-
a(?x, j747) :- a(?x, n746).
|
|
2279
|
-
a(?x, n748) :- a(?x, n747).
|
|
2280
|
-
a(?x, i748) :- a(?x, n747).
|
|
2281
|
-
a(?x, j748) :- a(?x, n747).
|
|
2282
|
-
a(?x, n749) :- a(?x, n748).
|
|
2283
|
-
a(?x, i749) :- a(?x, n748).
|
|
2284
|
-
a(?x, j749) :- a(?x, n748).
|
|
2285
|
-
a(?x, n750) :- a(?x, n749).
|
|
2286
|
-
a(?x, i750) :- a(?x, n749).
|
|
2287
|
-
a(?x, j750) :- a(?x, n749).
|
|
2288
|
-
a(?x, n751) :- a(?x, n750).
|
|
2289
|
-
a(?x, i751) :- a(?x, n750).
|
|
2290
|
-
a(?x, j751) :- a(?x, n750).
|
|
2291
|
-
a(?x, n752) :- a(?x, n751).
|
|
2292
|
-
a(?x, i752) :- a(?x, n751).
|
|
2293
|
-
a(?x, j752) :- a(?x, n751).
|
|
2294
|
-
a(?x, n753) :- a(?x, n752).
|
|
2295
|
-
a(?x, i753) :- a(?x, n752).
|
|
2296
|
-
a(?x, j753) :- a(?x, n752).
|
|
2297
|
-
a(?x, n754) :- a(?x, n753).
|
|
2298
|
-
a(?x, i754) :- a(?x, n753).
|
|
2299
|
-
a(?x, j754) :- a(?x, n753).
|
|
2300
|
-
a(?x, n755) :- a(?x, n754).
|
|
2301
|
-
a(?x, i755) :- a(?x, n754).
|
|
2302
|
-
a(?x, j755) :- a(?x, n754).
|
|
2303
|
-
a(?x, n756) :- a(?x, n755).
|
|
2304
|
-
a(?x, i756) :- a(?x, n755).
|
|
2305
|
-
a(?x, j756) :- a(?x, n755).
|
|
2306
|
-
a(?x, n757) :- a(?x, n756).
|
|
2307
|
-
a(?x, i757) :- a(?x, n756).
|
|
2308
|
-
a(?x, j757) :- a(?x, n756).
|
|
2309
|
-
a(?x, n758) :- a(?x, n757).
|
|
2310
|
-
a(?x, i758) :- a(?x, n757).
|
|
2311
|
-
a(?x, j758) :- a(?x, n757).
|
|
2312
|
-
a(?x, n759) :- a(?x, n758).
|
|
2313
|
-
a(?x, i759) :- a(?x, n758).
|
|
2314
|
-
a(?x, j759) :- a(?x, n758).
|
|
2315
|
-
a(?x, n760) :- a(?x, n759).
|
|
2316
|
-
a(?x, i760) :- a(?x, n759).
|
|
2317
|
-
a(?x, j760) :- a(?x, n759).
|
|
2318
|
-
a(?x, n761) :- a(?x, n760).
|
|
2319
|
-
a(?x, i761) :- a(?x, n760).
|
|
2320
|
-
a(?x, j761) :- a(?x, n760).
|
|
2321
|
-
a(?x, n762) :- a(?x, n761).
|
|
2322
|
-
a(?x, i762) :- a(?x, n761).
|
|
2323
|
-
a(?x, j762) :- a(?x, n761).
|
|
2324
|
-
a(?x, n763) :- a(?x, n762).
|
|
2325
|
-
a(?x, i763) :- a(?x, n762).
|
|
2326
|
-
a(?x, j763) :- a(?x, n762).
|
|
2327
|
-
a(?x, n764) :- a(?x, n763).
|
|
2328
|
-
a(?x, i764) :- a(?x, n763).
|
|
2329
|
-
a(?x, j764) :- a(?x, n763).
|
|
2330
|
-
a(?x, n765) :- a(?x, n764).
|
|
2331
|
-
a(?x, i765) :- a(?x, n764).
|
|
2332
|
-
a(?x, j765) :- a(?x, n764).
|
|
2333
|
-
a(?x, n766) :- a(?x, n765).
|
|
2334
|
-
a(?x, i766) :- a(?x, n765).
|
|
2335
|
-
a(?x, j766) :- a(?x, n765).
|
|
2336
|
-
a(?x, n767) :- a(?x, n766).
|
|
2337
|
-
a(?x, i767) :- a(?x, n766).
|
|
2338
|
-
a(?x, j767) :- a(?x, n766).
|
|
2339
|
-
a(?x, n768) :- a(?x, n767).
|
|
2340
|
-
a(?x, i768) :- a(?x, n767).
|
|
2341
|
-
a(?x, j768) :- a(?x, n767).
|
|
2342
|
-
a(?x, n769) :- a(?x, n768).
|
|
2343
|
-
a(?x, i769) :- a(?x, n768).
|
|
2344
|
-
a(?x, j769) :- a(?x, n768).
|
|
2345
|
-
a(?x, n770) :- a(?x, n769).
|
|
2346
|
-
a(?x, i770) :- a(?x, n769).
|
|
2347
|
-
a(?x, j770) :- a(?x, n769).
|
|
2348
|
-
a(?x, n771) :- a(?x, n770).
|
|
2349
|
-
a(?x, i771) :- a(?x, n770).
|
|
2350
|
-
a(?x, j771) :- a(?x, n770).
|
|
2351
|
-
a(?x, n772) :- a(?x, n771).
|
|
2352
|
-
a(?x, i772) :- a(?x, n771).
|
|
2353
|
-
a(?x, j772) :- a(?x, n771).
|
|
2354
|
-
a(?x, n773) :- a(?x, n772).
|
|
2355
|
-
a(?x, i773) :- a(?x, n772).
|
|
2356
|
-
a(?x, j773) :- a(?x, n772).
|
|
2357
|
-
a(?x, n774) :- a(?x, n773).
|
|
2358
|
-
a(?x, i774) :- a(?x, n773).
|
|
2359
|
-
a(?x, j774) :- a(?x, n773).
|
|
2360
|
-
a(?x, n775) :- a(?x, n774).
|
|
2361
|
-
a(?x, i775) :- a(?x, n774).
|
|
2362
|
-
a(?x, j775) :- a(?x, n774).
|
|
2363
|
-
a(?x, n776) :- a(?x, n775).
|
|
2364
|
-
a(?x, i776) :- a(?x, n775).
|
|
2365
|
-
a(?x, j776) :- a(?x, n775).
|
|
2366
|
-
a(?x, n777) :- a(?x, n776).
|
|
2367
|
-
a(?x, i777) :- a(?x, n776).
|
|
2368
|
-
a(?x, j777) :- a(?x, n776).
|
|
2369
|
-
a(?x, n778) :- a(?x, n777).
|
|
2370
|
-
a(?x, i778) :- a(?x, n777).
|
|
2371
|
-
a(?x, j778) :- a(?x, n777).
|
|
2372
|
-
a(?x, n779) :- a(?x, n778).
|
|
2373
|
-
a(?x, i779) :- a(?x, n778).
|
|
2374
|
-
a(?x, j779) :- a(?x, n778).
|
|
2375
|
-
a(?x, n780) :- a(?x, n779).
|
|
2376
|
-
a(?x, i780) :- a(?x, n779).
|
|
2377
|
-
a(?x, j780) :- a(?x, n779).
|
|
2378
|
-
a(?x, n781) :- a(?x, n780).
|
|
2379
|
-
a(?x, i781) :- a(?x, n780).
|
|
2380
|
-
a(?x, j781) :- a(?x, n780).
|
|
2381
|
-
a(?x, n782) :- a(?x, n781).
|
|
2382
|
-
a(?x, i782) :- a(?x, n781).
|
|
2383
|
-
a(?x, j782) :- a(?x, n781).
|
|
2384
|
-
a(?x, n783) :- a(?x, n782).
|
|
2385
|
-
a(?x, i783) :- a(?x, n782).
|
|
2386
|
-
a(?x, j783) :- a(?x, n782).
|
|
2387
|
-
a(?x, n784) :- a(?x, n783).
|
|
2388
|
-
a(?x, i784) :- a(?x, n783).
|
|
2389
|
-
a(?x, j784) :- a(?x, n783).
|
|
2390
|
-
a(?x, n785) :- a(?x, n784).
|
|
2391
|
-
a(?x, i785) :- a(?x, n784).
|
|
2392
|
-
a(?x, j785) :- a(?x, n784).
|
|
2393
|
-
a(?x, n786) :- a(?x, n785).
|
|
2394
|
-
a(?x, i786) :- a(?x, n785).
|
|
2395
|
-
a(?x, j786) :- a(?x, n785).
|
|
2396
|
-
a(?x, n787) :- a(?x, n786).
|
|
2397
|
-
a(?x, i787) :- a(?x, n786).
|
|
2398
|
-
a(?x, j787) :- a(?x, n786).
|
|
2399
|
-
a(?x, n788) :- a(?x, n787).
|
|
2400
|
-
a(?x, i788) :- a(?x, n787).
|
|
2401
|
-
a(?x, j788) :- a(?x, n787).
|
|
2402
|
-
a(?x, n789) :- a(?x, n788).
|
|
2403
|
-
a(?x, i789) :- a(?x, n788).
|
|
2404
|
-
a(?x, j789) :- a(?x, n788).
|
|
2405
|
-
a(?x, n790) :- a(?x, n789).
|
|
2406
|
-
a(?x, i790) :- a(?x, n789).
|
|
2407
|
-
a(?x, j790) :- a(?x, n789).
|
|
2408
|
-
a(?x, n791) :- a(?x, n790).
|
|
2409
|
-
a(?x, i791) :- a(?x, n790).
|
|
2410
|
-
a(?x, j791) :- a(?x, n790).
|
|
2411
|
-
a(?x, n792) :- a(?x, n791).
|
|
2412
|
-
a(?x, i792) :- a(?x, n791).
|
|
2413
|
-
a(?x, j792) :- a(?x, n791).
|
|
2414
|
-
a(?x, n793) :- a(?x, n792).
|
|
2415
|
-
a(?x, i793) :- a(?x, n792).
|
|
2416
|
-
a(?x, j793) :- a(?x, n792).
|
|
2417
|
-
a(?x, n794) :- a(?x, n793).
|
|
2418
|
-
a(?x, i794) :- a(?x, n793).
|
|
2419
|
-
a(?x, j794) :- a(?x, n793).
|
|
2420
|
-
a(?x, n795) :- a(?x, n794).
|
|
2421
|
-
a(?x, i795) :- a(?x, n794).
|
|
2422
|
-
a(?x, j795) :- a(?x, n794).
|
|
2423
|
-
a(?x, n796) :- a(?x, n795).
|
|
2424
|
-
a(?x, i796) :- a(?x, n795).
|
|
2425
|
-
a(?x, j796) :- a(?x, n795).
|
|
2426
|
-
a(?x, n797) :- a(?x, n796).
|
|
2427
|
-
a(?x, i797) :- a(?x, n796).
|
|
2428
|
-
a(?x, j797) :- a(?x, n796).
|
|
2429
|
-
a(?x, n798) :- a(?x, n797).
|
|
2430
|
-
a(?x, i798) :- a(?x, n797).
|
|
2431
|
-
a(?x, j798) :- a(?x, n797).
|
|
2432
|
-
a(?x, n799) :- a(?x, n798).
|
|
2433
|
-
a(?x, i799) :- a(?x, n798).
|
|
2434
|
-
a(?x, j799) :- a(?x, n798).
|
|
2435
|
-
a(?x, n800) :- a(?x, n799).
|
|
2436
|
-
a(?x, i800) :- a(?x, n799).
|
|
2437
|
-
a(?x, j800) :- a(?x, n799).
|
|
2438
|
-
a(?x, n801) :- a(?x, n800).
|
|
2439
|
-
a(?x, i801) :- a(?x, n800).
|
|
2440
|
-
a(?x, j801) :- a(?x, n800).
|
|
2441
|
-
a(?x, n802) :- a(?x, n801).
|
|
2442
|
-
a(?x, i802) :- a(?x, n801).
|
|
2443
|
-
a(?x, j802) :- a(?x, n801).
|
|
2444
|
-
a(?x, n803) :- a(?x, n802).
|
|
2445
|
-
a(?x, i803) :- a(?x, n802).
|
|
2446
|
-
a(?x, j803) :- a(?x, n802).
|
|
2447
|
-
a(?x, n804) :- a(?x, n803).
|
|
2448
|
-
a(?x, i804) :- a(?x, n803).
|
|
2449
|
-
a(?x, j804) :- a(?x, n803).
|
|
2450
|
-
a(?x, n805) :- a(?x, n804).
|
|
2451
|
-
a(?x, i805) :- a(?x, n804).
|
|
2452
|
-
a(?x, j805) :- a(?x, n804).
|
|
2453
|
-
a(?x, n806) :- a(?x, n805).
|
|
2454
|
-
a(?x, i806) :- a(?x, n805).
|
|
2455
|
-
a(?x, j806) :- a(?x, n805).
|
|
2456
|
-
a(?x, n807) :- a(?x, n806).
|
|
2457
|
-
a(?x, i807) :- a(?x, n806).
|
|
2458
|
-
a(?x, j807) :- a(?x, n806).
|
|
2459
|
-
a(?x, n808) :- a(?x, n807).
|
|
2460
|
-
a(?x, i808) :- a(?x, n807).
|
|
2461
|
-
a(?x, j808) :- a(?x, n807).
|
|
2462
|
-
a(?x, n809) :- a(?x, n808).
|
|
2463
|
-
a(?x, i809) :- a(?x, n808).
|
|
2464
|
-
a(?x, j809) :- a(?x, n808).
|
|
2465
|
-
a(?x, n810) :- a(?x, n809).
|
|
2466
|
-
a(?x, i810) :- a(?x, n809).
|
|
2467
|
-
a(?x, j810) :- a(?x, n809).
|
|
2468
|
-
a(?x, n811) :- a(?x, n810).
|
|
2469
|
-
a(?x, i811) :- a(?x, n810).
|
|
2470
|
-
a(?x, j811) :- a(?x, n810).
|
|
2471
|
-
a(?x, n812) :- a(?x, n811).
|
|
2472
|
-
a(?x, i812) :- a(?x, n811).
|
|
2473
|
-
a(?x, j812) :- a(?x, n811).
|
|
2474
|
-
a(?x, n813) :- a(?x, n812).
|
|
2475
|
-
a(?x, i813) :- a(?x, n812).
|
|
2476
|
-
a(?x, j813) :- a(?x, n812).
|
|
2477
|
-
a(?x, n814) :- a(?x, n813).
|
|
2478
|
-
a(?x, i814) :- a(?x, n813).
|
|
2479
|
-
a(?x, j814) :- a(?x, n813).
|
|
2480
|
-
a(?x, n815) :- a(?x, n814).
|
|
2481
|
-
a(?x, i815) :- a(?x, n814).
|
|
2482
|
-
a(?x, j815) :- a(?x, n814).
|
|
2483
|
-
a(?x, n816) :- a(?x, n815).
|
|
2484
|
-
a(?x, i816) :- a(?x, n815).
|
|
2485
|
-
a(?x, j816) :- a(?x, n815).
|
|
2486
|
-
a(?x, n817) :- a(?x, n816).
|
|
2487
|
-
a(?x, i817) :- a(?x, n816).
|
|
2488
|
-
a(?x, j817) :- a(?x, n816).
|
|
2489
|
-
a(?x, n818) :- a(?x, n817).
|
|
2490
|
-
a(?x, i818) :- a(?x, n817).
|
|
2491
|
-
a(?x, j818) :- a(?x, n817).
|
|
2492
|
-
a(?x, n819) :- a(?x, n818).
|
|
2493
|
-
a(?x, i819) :- a(?x, n818).
|
|
2494
|
-
a(?x, j819) :- a(?x, n818).
|
|
2495
|
-
a(?x, n820) :- a(?x, n819).
|
|
2496
|
-
a(?x, i820) :- a(?x, n819).
|
|
2497
|
-
a(?x, j820) :- a(?x, n819).
|
|
2498
|
-
a(?x, n821) :- a(?x, n820).
|
|
2499
|
-
a(?x, i821) :- a(?x, n820).
|
|
2500
|
-
a(?x, j821) :- a(?x, n820).
|
|
2501
|
-
a(?x, n822) :- a(?x, n821).
|
|
2502
|
-
a(?x, i822) :- a(?x, n821).
|
|
2503
|
-
a(?x, j822) :- a(?x, n821).
|
|
2504
|
-
a(?x, n823) :- a(?x, n822).
|
|
2505
|
-
a(?x, i823) :- a(?x, n822).
|
|
2506
|
-
a(?x, j823) :- a(?x, n822).
|
|
2507
|
-
a(?x, n824) :- a(?x, n823).
|
|
2508
|
-
a(?x, i824) :- a(?x, n823).
|
|
2509
|
-
a(?x, j824) :- a(?x, n823).
|
|
2510
|
-
a(?x, n825) :- a(?x, n824).
|
|
2511
|
-
a(?x, i825) :- a(?x, n824).
|
|
2512
|
-
a(?x, j825) :- a(?x, n824).
|
|
2513
|
-
a(?x, n826) :- a(?x, n825).
|
|
2514
|
-
a(?x, i826) :- a(?x, n825).
|
|
2515
|
-
a(?x, j826) :- a(?x, n825).
|
|
2516
|
-
a(?x, n827) :- a(?x, n826).
|
|
2517
|
-
a(?x, i827) :- a(?x, n826).
|
|
2518
|
-
a(?x, j827) :- a(?x, n826).
|
|
2519
|
-
a(?x, n828) :- a(?x, n827).
|
|
2520
|
-
a(?x, i828) :- a(?x, n827).
|
|
2521
|
-
a(?x, j828) :- a(?x, n827).
|
|
2522
|
-
a(?x, n829) :- a(?x, n828).
|
|
2523
|
-
a(?x, i829) :- a(?x, n828).
|
|
2524
|
-
a(?x, j829) :- a(?x, n828).
|
|
2525
|
-
a(?x, n830) :- a(?x, n829).
|
|
2526
|
-
a(?x, i830) :- a(?x, n829).
|
|
2527
|
-
a(?x, j830) :- a(?x, n829).
|
|
2528
|
-
a(?x, n831) :- a(?x, n830).
|
|
2529
|
-
a(?x, i831) :- a(?x, n830).
|
|
2530
|
-
a(?x, j831) :- a(?x, n830).
|
|
2531
|
-
a(?x, n832) :- a(?x, n831).
|
|
2532
|
-
a(?x, i832) :- a(?x, n831).
|
|
2533
|
-
a(?x, j832) :- a(?x, n831).
|
|
2534
|
-
a(?x, n833) :- a(?x, n832).
|
|
2535
|
-
a(?x, i833) :- a(?x, n832).
|
|
2536
|
-
a(?x, j833) :- a(?x, n832).
|
|
2537
|
-
a(?x, n834) :- a(?x, n833).
|
|
2538
|
-
a(?x, i834) :- a(?x, n833).
|
|
2539
|
-
a(?x, j834) :- a(?x, n833).
|
|
2540
|
-
a(?x, n835) :- a(?x, n834).
|
|
2541
|
-
a(?x, i835) :- a(?x, n834).
|
|
2542
|
-
a(?x, j835) :- a(?x, n834).
|
|
2543
|
-
a(?x, n836) :- a(?x, n835).
|
|
2544
|
-
a(?x, i836) :- a(?x, n835).
|
|
2545
|
-
a(?x, j836) :- a(?x, n835).
|
|
2546
|
-
a(?x, n837) :- a(?x, n836).
|
|
2547
|
-
a(?x, i837) :- a(?x, n836).
|
|
2548
|
-
a(?x, j837) :- a(?x, n836).
|
|
2549
|
-
a(?x, n838) :- a(?x, n837).
|
|
2550
|
-
a(?x, i838) :- a(?x, n837).
|
|
2551
|
-
a(?x, j838) :- a(?x, n837).
|
|
2552
|
-
a(?x, n839) :- a(?x, n838).
|
|
2553
|
-
a(?x, i839) :- a(?x, n838).
|
|
2554
|
-
a(?x, j839) :- a(?x, n838).
|
|
2555
|
-
a(?x, n840) :- a(?x, n839).
|
|
2556
|
-
a(?x, i840) :- a(?x, n839).
|
|
2557
|
-
a(?x, j840) :- a(?x, n839).
|
|
2558
|
-
a(?x, n841) :- a(?x, n840).
|
|
2559
|
-
a(?x, i841) :- a(?x, n840).
|
|
2560
|
-
a(?x, j841) :- a(?x, n840).
|
|
2561
|
-
a(?x, n842) :- a(?x, n841).
|
|
2562
|
-
a(?x, i842) :- a(?x, n841).
|
|
2563
|
-
a(?x, j842) :- a(?x, n841).
|
|
2564
|
-
a(?x, n843) :- a(?x, n842).
|
|
2565
|
-
a(?x, i843) :- a(?x, n842).
|
|
2566
|
-
a(?x, j843) :- a(?x, n842).
|
|
2567
|
-
a(?x, n844) :- a(?x, n843).
|
|
2568
|
-
a(?x, i844) :- a(?x, n843).
|
|
2569
|
-
a(?x, j844) :- a(?x, n843).
|
|
2570
|
-
a(?x, n845) :- a(?x, n844).
|
|
2571
|
-
a(?x, i845) :- a(?x, n844).
|
|
2572
|
-
a(?x, j845) :- a(?x, n844).
|
|
2573
|
-
a(?x, n846) :- a(?x, n845).
|
|
2574
|
-
a(?x, i846) :- a(?x, n845).
|
|
2575
|
-
a(?x, j846) :- a(?x, n845).
|
|
2576
|
-
a(?x, n847) :- a(?x, n846).
|
|
2577
|
-
a(?x, i847) :- a(?x, n846).
|
|
2578
|
-
a(?x, j847) :- a(?x, n846).
|
|
2579
|
-
a(?x, n848) :- a(?x, n847).
|
|
2580
|
-
a(?x, i848) :- a(?x, n847).
|
|
2581
|
-
a(?x, j848) :- a(?x, n847).
|
|
2582
|
-
a(?x, n849) :- a(?x, n848).
|
|
2583
|
-
a(?x, i849) :- a(?x, n848).
|
|
2584
|
-
a(?x, j849) :- a(?x, n848).
|
|
2585
|
-
a(?x, n850) :- a(?x, n849).
|
|
2586
|
-
a(?x, i850) :- a(?x, n849).
|
|
2587
|
-
a(?x, j850) :- a(?x, n849).
|
|
2588
|
-
a(?x, n851) :- a(?x, n850).
|
|
2589
|
-
a(?x, i851) :- a(?x, n850).
|
|
2590
|
-
a(?x, j851) :- a(?x, n850).
|
|
2591
|
-
a(?x, n852) :- a(?x, n851).
|
|
2592
|
-
a(?x, i852) :- a(?x, n851).
|
|
2593
|
-
a(?x, j852) :- a(?x, n851).
|
|
2594
|
-
a(?x, n853) :- a(?x, n852).
|
|
2595
|
-
a(?x, i853) :- a(?x, n852).
|
|
2596
|
-
a(?x, j853) :- a(?x, n852).
|
|
2597
|
-
a(?x, n854) :- a(?x, n853).
|
|
2598
|
-
a(?x, i854) :- a(?x, n853).
|
|
2599
|
-
a(?x, j854) :- a(?x, n853).
|
|
2600
|
-
a(?x, n855) :- a(?x, n854).
|
|
2601
|
-
a(?x, i855) :- a(?x, n854).
|
|
2602
|
-
a(?x, j855) :- a(?x, n854).
|
|
2603
|
-
a(?x, n856) :- a(?x, n855).
|
|
2604
|
-
a(?x, i856) :- a(?x, n855).
|
|
2605
|
-
a(?x, j856) :- a(?x, n855).
|
|
2606
|
-
a(?x, n857) :- a(?x, n856).
|
|
2607
|
-
a(?x, i857) :- a(?x, n856).
|
|
2608
|
-
a(?x, j857) :- a(?x, n856).
|
|
2609
|
-
a(?x, n858) :- a(?x, n857).
|
|
2610
|
-
a(?x, i858) :- a(?x, n857).
|
|
2611
|
-
a(?x, j858) :- a(?x, n857).
|
|
2612
|
-
a(?x, n859) :- a(?x, n858).
|
|
2613
|
-
a(?x, i859) :- a(?x, n858).
|
|
2614
|
-
a(?x, j859) :- a(?x, n858).
|
|
2615
|
-
a(?x, n860) :- a(?x, n859).
|
|
2616
|
-
a(?x, i860) :- a(?x, n859).
|
|
2617
|
-
a(?x, j860) :- a(?x, n859).
|
|
2618
|
-
a(?x, n861) :- a(?x, n860).
|
|
2619
|
-
a(?x, i861) :- a(?x, n860).
|
|
2620
|
-
a(?x, j861) :- a(?x, n860).
|
|
2621
|
-
a(?x, n862) :- a(?x, n861).
|
|
2622
|
-
a(?x, i862) :- a(?x, n861).
|
|
2623
|
-
a(?x, j862) :- a(?x, n861).
|
|
2624
|
-
a(?x, n863) :- a(?x, n862).
|
|
2625
|
-
a(?x, i863) :- a(?x, n862).
|
|
2626
|
-
a(?x, j863) :- a(?x, n862).
|
|
2627
|
-
a(?x, n864) :- a(?x, n863).
|
|
2628
|
-
a(?x, i864) :- a(?x, n863).
|
|
2629
|
-
a(?x, j864) :- a(?x, n863).
|
|
2630
|
-
a(?x, n865) :- a(?x, n864).
|
|
2631
|
-
a(?x, i865) :- a(?x, n864).
|
|
2632
|
-
a(?x, j865) :- a(?x, n864).
|
|
2633
|
-
a(?x, n866) :- a(?x, n865).
|
|
2634
|
-
a(?x, i866) :- a(?x, n865).
|
|
2635
|
-
a(?x, j866) :- a(?x, n865).
|
|
2636
|
-
a(?x, n867) :- a(?x, n866).
|
|
2637
|
-
a(?x, i867) :- a(?x, n866).
|
|
2638
|
-
a(?x, j867) :- a(?x, n866).
|
|
2639
|
-
a(?x, n868) :- a(?x, n867).
|
|
2640
|
-
a(?x, i868) :- a(?x, n867).
|
|
2641
|
-
a(?x, j868) :- a(?x, n867).
|
|
2642
|
-
a(?x, n869) :- a(?x, n868).
|
|
2643
|
-
a(?x, i869) :- a(?x, n868).
|
|
2644
|
-
a(?x, j869) :- a(?x, n868).
|
|
2645
|
-
a(?x, n870) :- a(?x, n869).
|
|
2646
|
-
a(?x, i870) :- a(?x, n869).
|
|
2647
|
-
a(?x, j870) :- a(?x, n869).
|
|
2648
|
-
a(?x, n871) :- a(?x, n870).
|
|
2649
|
-
a(?x, i871) :- a(?x, n870).
|
|
2650
|
-
a(?x, j871) :- a(?x, n870).
|
|
2651
|
-
a(?x, n872) :- a(?x, n871).
|
|
2652
|
-
a(?x, i872) :- a(?x, n871).
|
|
2653
|
-
a(?x, j872) :- a(?x, n871).
|
|
2654
|
-
a(?x, n873) :- a(?x, n872).
|
|
2655
|
-
a(?x, i873) :- a(?x, n872).
|
|
2656
|
-
a(?x, j873) :- a(?x, n872).
|
|
2657
|
-
a(?x, n874) :- a(?x, n873).
|
|
2658
|
-
a(?x, i874) :- a(?x, n873).
|
|
2659
|
-
a(?x, j874) :- a(?x, n873).
|
|
2660
|
-
a(?x, n875) :- a(?x, n874).
|
|
2661
|
-
a(?x, i875) :- a(?x, n874).
|
|
2662
|
-
a(?x, j875) :- a(?x, n874).
|
|
2663
|
-
a(?x, n876) :- a(?x, n875).
|
|
2664
|
-
a(?x, i876) :- a(?x, n875).
|
|
2665
|
-
a(?x, j876) :- a(?x, n875).
|
|
2666
|
-
a(?x, n877) :- a(?x, n876).
|
|
2667
|
-
a(?x, i877) :- a(?x, n876).
|
|
2668
|
-
a(?x, j877) :- a(?x, n876).
|
|
2669
|
-
a(?x, n878) :- a(?x, n877).
|
|
2670
|
-
a(?x, i878) :- a(?x, n877).
|
|
2671
|
-
a(?x, j878) :- a(?x, n877).
|
|
2672
|
-
a(?x, n879) :- a(?x, n878).
|
|
2673
|
-
a(?x, i879) :- a(?x, n878).
|
|
2674
|
-
a(?x, j879) :- a(?x, n878).
|
|
2675
|
-
a(?x, n880) :- a(?x, n879).
|
|
2676
|
-
a(?x, i880) :- a(?x, n879).
|
|
2677
|
-
a(?x, j880) :- a(?x, n879).
|
|
2678
|
-
a(?x, n881) :- a(?x, n880).
|
|
2679
|
-
a(?x, i881) :- a(?x, n880).
|
|
2680
|
-
a(?x, j881) :- a(?x, n880).
|
|
2681
|
-
a(?x, n882) :- a(?x, n881).
|
|
2682
|
-
a(?x, i882) :- a(?x, n881).
|
|
2683
|
-
a(?x, j882) :- a(?x, n881).
|
|
2684
|
-
a(?x, n883) :- a(?x, n882).
|
|
2685
|
-
a(?x, i883) :- a(?x, n882).
|
|
2686
|
-
a(?x, j883) :- a(?x, n882).
|
|
2687
|
-
a(?x, n884) :- a(?x, n883).
|
|
2688
|
-
a(?x, i884) :- a(?x, n883).
|
|
2689
|
-
a(?x, j884) :- a(?x, n883).
|
|
2690
|
-
a(?x, n885) :- a(?x, n884).
|
|
2691
|
-
a(?x, i885) :- a(?x, n884).
|
|
2692
|
-
a(?x, j885) :- a(?x, n884).
|
|
2693
|
-
a(?x, n886) :- a(?x, n885).
|
|
2694
|
-
a(?x, i886) :- a(?x, n885).
|
|
2695
|
-
a(?x, j886) :- a(?x, n885).
|
|
2696
|
-
a(?x, n887) :- a(?x, n886).
|
|
2697
|
-
a(?x, i887) :- a(?x, n886).
|
|
2698
|
-
a(?x, j887) :- a(?x, n886).
|
|
2699
|
-
a(?x, n888) :- a(?x, n887).
|
|
2700
|
-
a(?x, i888) :- a(?x, n887).
|
|
2701
|
-
a(?x, j888) :- a(?x, n887).
|
|
2702
|
-
a(?x, n889) :- a(?x, n888).
|
|
2703
|
-
a(?x, i889) :- a(?x, n888).
|
|
2704
|
-
a(?x, j889) :- a(?x, n888).
|
|
2705
|
-
a(?x, n890) :- a(?x, n889).
|
|
2706
|
-
a(?x, i890) :- a(?x, n889).
|
|
2707
|
-
a(?x, j890) :- a(?x, n889).
|
|
2708
|
-
a(?x, n891) :- a(?x, n890).
|
|
2709
|
-
a(?x, i891) :- a(?x, n890).
|
|
2710
|
-
a(?x, j891) :- a(?x, n890).
|
|
2711
|
-
a(?x, n892) :- a(?x, n891).
|
|
2712
|
-
a(?x, i892) :- a(?x, n891).
|
|
2713
|
-
a(?x, j892) :- a(?x, n891).
|
|
2714
|
-
a(?x, n893) :- a(?x, n892).
|
|
2715
|
-
a(?x, i893) :- a(?x, n892).
|
|
2716
|
-
a(?x, j893) :- a(?x, n892).
|
|
2717
|
-
a(?x, n894) :- a(?x, n893).
|
|
2718
|
-
a(?x, i894) :- a(?x, n893).
|
|
2719
|
-
a(?x, j894) :- a(?x, n893).
|
|
2720
|
-
a(?x, n895) :- a(?x, n894).
|
|
2721
|
-
a(?x, i895) :- a(?x, n894).
|
|
2722
|
-
a(?x, j895) :- a(?x, n894).
|
|
2723
|
-
a(?x, n896) :- a(?x, n895).
|
|
2724
|
-
a(?x, i896) :- a(?x, n895).
|
|
2725
|
-
a(?x, j896) :- a(?x, n895).
|
|
2726
|
-
a(?x, n897) :- a(?x, n896).
|
|
2727
|
-
a(?x, i897) :- a(?x, n896).
|
|
2728
|
-
a(?x, j897) :- a(?x, n896).
|
|
2729
|
-
a(?x, n898) :- a(?x, n897).
|
|
2730
|
-
a(?x, i898) :- a(?x, n897).
|
|
2731
|
-
a(?x, j898) :- a(?x, n897).
|
|
2732
|
-
a(?x, n899) :- a(?x, n898).
|
|
2733
|
-
a(?x, i899) :- a(?x, n898).
|
|
2734
|
-
a(?x, j899) :- a(?x, n898).
|
|
2735
|
-
a(?x, n900) :- a(?x, n899).
|
|
2736
|
-
a(?x, i900) :- a(?x, n899).
|
|
2737
|
-
a(?x, j900) :- a(?x, n899).
|
|
2738
|
-
a(?x, n901) :- a(?x, n900).
|
|
2739
|
-
a(?x, i901) :- a(?x, n900).
|
|
2740
|
-
a(?x, j901) :- a(?x, n900).
|
|
2741
|
-
a(?x, n902) :- a(?x, n901).
|
|
2742
|
-
a(?x, i902) :- a(?x, n901).
|
|
2743
|
-
a(?x, j902) :- a(?x, n901).
|
|
2744
|
-
a(?x, n903) :- a(?x, n902).
|
|
2745
|
-
a(?x, i903) :- a(?x, n902).
|
|
2746
|
-
a(?x, j903) :- a(?x, n902).
|
|
2747
|
-
a(?x, n904) :- a(?x, n903).
|
|
2748
|
-
a(?x, i904) :- a(?x, n903).
|
|
2749
|
-
a(?x, j904) :- a(?x, n903).
|
|
2750
|
-
a(?x, n905) :- a(?x, n904).
|
|
2751
|
-
a(?x, i905) :- a(?x, n904).
|
|
2752
|
-
a(?x, j905) :- a(?x, n904).
|
|
2753
|
-
a(?x, n906) :- a(?x, n905).
|
|
2754
|
-
a(?x, i906) :- a(?x, n905).
|
|
2755
|
-
a(?x, j906) :- a(?x, n905).
|
|
2756
|
-
a(?x, n907) :- a(?x, n906).
|
|
2757
|
-
a(?x, i907) :- a(?x, n906).
|
|
2758
|
-
a(?x, j907) :- a(?x, n906).
|
|
2759
|
-
a(?x, n908) :- a(?x, n907).
|
|
2760
|
-
a(?x, i908) :- a(?x, n907).
|
|
2761
|
-
a(?x, j908) :- a(?x, n907).
|
|
2762
|
-
a(?x, n909) :- a(?x, n908).
|
|
2763
|
-
a(?x, i909) :- a(?x, n908).
|
|
2764
|
-
a(?x, j909) :- a(?x, n908).
|
|
2765
|
-
a(?x, n910) :- a(?x, n909).
|
|
2766
|
-
a(?x, i910) :- a(?x, n909).
|
|
2767
|
-
a(?x, j910) :- a(?x, n909).
|
|
2768
|
-
a(?x, n911) :- a(?x, n910).
|
|
2769
|
-
a(?x, i911) :- a(?x, n910).
|
|
2770
|
-
a(?x, j911) :- a(?x, n910).
|
|
2771
|
-
a(?x, n912) :- a(?x, n911).
|
|
2772
|
-
a(?x, i912) :- a(?x, n911).
|
|
2773
|
-
a(?x, j912) :- a(?x, n911).
|
|
2774
|
-
a(?x, n913) :- a(?x, n912).
|
|
2775
|
-
a(?x, i913) :- a(?x, n912).
|
|
2776
|
-
a(?x, j913) :- a(?x, n912).
|
|
2777
|
-
a(?x, n914) :- a(?x, n913).
|
|
2778
|
-
a(?x, i914) :- a(?x, n913).
|
|
2779
|
-
a(?x, j914) :- a(?x, n913).
|
|
2780
|
-
a(?x, n915) :- a(?x, n914).
|
|
2781
|
-
a(?x, i915) :- a(?x, n914).
|
|
2782
|
-
a(?x, j915) :- a(?x, n914).
|
|
2783
|
-
a(?x, n916) :- a(?x, n915).
|
|
2784
|
-
a(?x, i916) :- a(?x, n915).
|
|
2785
|
-
a(?x, j916) :- a(?x, n915).
|
|
2786
|
-
a(?x, n917) :- a(?x, n916).
|
|
2787
|
-
a(?x, i917) :- a(?x, n916).
|
|
2788
|
-
a(?x, j917) :- a(?x, n916).
|
|
2789
|
-
a(?x, n918) :- a(?x, n917).
|
|
2790
|
-
a(?x, i918) :- a(?x, n917).
|
|
2791
|
-
a(?x, j918) :- a(?x, n917).
|
|
2792
|
-
a(?x, n919) :- a(?x, n918).
|
|
2793
|
-
a(?x, i919) :- a(?x, n918).
|
|
2794
|
-
a(?x, j919) :- a(?x, n918).
|
|
2795
|
-
a(?x, n920) :- a(?x, n919).
|
|
2796
|
-
a(?x, i920) :- a(?x, n919).
|
|
2797
|
-
a(?x, j920) :- a(?x, n919).
|
|
2798
|
-
a(?x, n921) :- a(?x, n920).
|
|
2799
|
-
a(?x, i921) :- a(?x, n920).
|
|
2800
|
-
a(?x, j921) :- a(?x, n920).
|
|
2801
|
-
a(?x, n922) :- a(?x, n921).
|
|
2802
|
-
a(?x, i922) :- a(?x, n921).
|
|
2803
|
-
a(?x, j922) :- a(?x, n921).
|
|
2804
|
-
a(?x, n923) :- a(?x, n922).
|
|
2805
|
-
a(?x, i923) :- a(?x, n922).
|
|
2806
|
-
a(?x, j923) :- a(?x, n922).
|
|
2807
|
-
a(?x, n924) :- a(?x, n923).
|
|
2808
|
-
a(?x, i924) :- a(?x, n923).
|
|
2809
|
-
a(?x, j924) :- a(?x, n923).
|
|
2810
|
-
a(?x, n925) :- a(?x, n924).
|
|
2811
|
-
a(?x, i925) :- a(?x, n924).
|
|
2812
|
-
a(?x, j925) :- a(?x, n924).
|
|
2813
|
-
a(?x, n926) :- a(?x, n925).
|
|
2814
|
-
a(?x, i926) :- a(?x, n925).
|
|
2815
|
-
a(?x, j926) :- a(?x, n925).
|
|
2816
|
-
a(?x, n927) :- a(?x, n926).
|
|
2817
|
-
a(?x, i927) :- a(?x, n926).
|
|
2818
|
-
a(?x, j927) :- a(?x, n926).
|
|
2819
|
-
a(?x, n928) :- a(?x, n927).
|
|
2820
|
-
a(?x, i928) :- a(?x, n927).
|
|
2821
|
-
a(?x, j928) :- a(?x, n927).
|
|
2822
|
-
a(?x, n929) :- a(?x, n928).
|
|
2823
|
-
a(?x, i929) :- a(?x, n928).
|
|
2824
|
-
a(?x, j929) :- a(?x, n928).
|
|
2825
|
-
a(?x, n930) :- a(?x, n929).
|
|
2826
|
-
a(?x, i930) :- a(?x, n929).
|
|
2827
|
-
a(?x, j930) :- a(?x, n929).
|
|
2828
|
-
a(?x, n931) :- a(?x, n930).
|
|
2829
|
-
a(?x, i931) :- a(?x, n930).
|
|
2830
|
-
a(?x, j931) :- a(?x, n930).
|
|
2831
|
-
a(?x, n932) :- a(?x, n931).
|
|
2832
|
-
a(?x, i932) :- a(?x, n931).
|
|
2833
|
-
a(?x, j932) :- a(?x, n931).
|
|
2834
|
-
a(?x, n933) :- a(?x, n932).
|
|
2835
|
-
a(?x, i933) :- a(?x, n932).
|
|
2836
|
-
a(?x, j933) :- a(?x, n932).
|
|
2837
|
-
a(?x, n934) :- a(?x, n933).
|
|
2838
|
-
a(?x, i934) :- a(?x, n933).
|
|
2839
|
-
a(?x, j934) :- a(?x, n933).
|
|
2840
|
-
a(?x, n935) :- a(?x, n934).
|
|
2841
|
-
a(?x, i935) :- a(?x, n934).
|
|
2842
|
-
a(?x, j935) :- a(?x, n934).
|
|
2843
|
-
a(?x, n936) :- a(?x, n935).
|
|
2844
|
-
a(?x, i936) :- a(?x, n935).
|
|
2845
|
-
a(?x, j936) :- a(?x, n935).
|
|
2846
|
-
a(?x, n937) :- a(?x, n936).
|
|
2847
|
-
a(?x, i937) :- a(?x, n936).
|
|
2848
|
-
a(?x, j937) :- a(?x, n936).
|
|
2849
|
-
a(?x, n938) :- a(?x, n937).
|
|
2850
|
-
a(?x, i938) :- a(?x, n937).
|
|
2851
|
-
a(?x, j938) :- a(?x, n937).
|
|
2852
|
-
a(?x, n939) :- a(?x, n938).
|
|
2853
|
-
a(?x, i939) :- a(?x, n938).
|
|
2854
|
-
a(?x, j939) :- a(?x, n938).
|
|
2855
|
-
a(?x, n940) :- a(?x, n939).
|
|
2856
|
-
a(?x, i940) :- a(?x, n939).
|
|
2857
|
-
a(?x, j940) :- a(?x, n939).
|
|
2858
|
-
a(?x, n941) :- a(?x, n940).
|
|
2859
|
-
a(?x, i941) :- a(?x, n940).
|
|
2860
|
-
a(?x, j941) :- a(?x, n940).
|
|
2861
|
-
a(?x, n942) :- a(?x, n941).
|
|
2862
|
-
a(?x, i942) :- a(?x, n941).
|
|
2863
|
-
a(?x, j942) :- a(?x, n941).
|
|
2864
|
-
a(?x, n943) :- a(?x, n942).
|
|
2865
|
-
a(?x, i943) :- a(?x, n942).
|
|
2866
|
-
a(?x, j943) :- a(?x, n942).
|
|
2867
|
-
a(?x, n944) :- a(?x, n943).
|
|
2868
|
-
a(?x, i944) :- a(?x, n943).
|
|
2869
|
-
a(?x, j944) :- a(?x, n943).
|
|
2870
|
-
a(?x, n945) :- a(?x, n944).
|
|
2871
|
-
a(?x, i945) :- a(?x, n944).
|
|
2872
|
-
a(?x, j945) :- a(?x, n944).
|
|
2873
|
-
a(?x, n946) :- a(?x, n945).
|
|
2874
|
-
a(?x, i946) :- a(?x, n945).
|
|
2875
|
-
a(?x, j946) :- a(?x, n945).
|
|
2876
|
-
a(?x, n947) :- a(?x, n946).
|
|
2877
|
-
a(?x, i947) :- a(?x, n946).
|
|
2878
|
-
a(?x, j947) :- a(?x, n946).
|
|
2879
|
-
a(?x, n948) :- a(?x, n947).
|
|
2880
|
-
a(?x, i948) :- a(?x, n947).
|
|
2881
|
-
a(?x, j948) :- a(?x, n947).
|
|
2882
|
-
a(?x, n949) :- a(?x, n948).
|
|
2883
|
-
a(?x, i949) :- a(?x, n948).
|
|
2884
|
-
a(?x, j949) :- a(?x, n948).
|
|
2885
|
-
a(?x, n950) :- a(?x, n949).
|
|
2886
|
-
a(?x, i950) :- a(?x, n949).
|
|
2887
|
-
a(?x, j950) :- a(?x, n949).
|
|
2888
|
-
a(?x, n951) :- a(?x, n950).
|
|
2889
|
-
a(?x, i951) :- a(?x, n950).
|
|
2890
|
-
a(?x, j951) :- a(?x, n950).
|
|
2891
|
-
a(?x, n952) :- a(?x, n951).
|
|
2892
|
-
a(?x, i952) :- a(?x, n951).
|
|
2893
|
-
a(?x, j952) :- a(?x, n951).
|
|
2894
|
-
a(?x, n953) :- a(?x, n952).
|
|
2895
|
-
a(?x, i953) :- a(?x, n952).
|
|
2896
|
-
a(?x, j953) :- a(?x, n952).
|
|
2897
|
-
a(?x, n954) :- a(?x, n953).
|
|
2898
|
-
a(?x, i954) :- a(?x, n953).
|
|
2899
|
-
a(?x, j954) :- a(?x, n953).
|
|
2900
|
-
a(?x, n955) :- a(?x, n954).
|
|
2901
|
-
a(?x, i955) :- a(?x, n954).
|
|
2902
|
-
a(?x, j955) :- a(?x, n954).
|
|
2903
|
-
a(?x, n956) :- a(?x, n955).
|
|
2904
|
-
a(?x, i956) :- a(?x, n955).
|
|
2905
|
-
a(?x, j956) :- a(?x, n955).
|
|
2906
|
-
a(?x, n957) :- a(?x, n956).
|
|
2907
|
-
a(?x, i957) :- a(?x, n956).
|
|
2908
|
-
a(?x, j957) :- a(?x, n956).
|
|
2909
|
-
a(?x, n958) :- a(?x, n957).
|
|
2910
|
-
a(?x, i958) :- a(?x, n957).
|
|
2911
|
-
a(?x, j958) :- a(?x, n957).
|
|
2912
|
-
a(?x, n959) :- a(?x, n958).
|
|
2913
|
-
a(?x, i959) :- a(?x, n958).
|
|
2914
|
-
a(?x, j959) :- a(?x, n958).
|
|
2915
|
-
a(?x, n960) :- a(?x, n959).
|
|
2916
|
-
a(?x, i960) :- a(?x, n959).
|
|
2917
|
-
a(?x, j960) :- a(?x, n959).
|
|
2918
|
-
a(?x, n961) :- a(?x, n960).
|
|
2919
|
-
a(?x, i961) :- a(?x, n960).
|
|
2920
|
-
a(?x, j961) :- a(?x, n960).
|
|
2921
|
-
a(?x, n962) :- a(?x, n961).
|
|
2922
|
-
a(?x, i962) :- a(?x, n961).
|
|
2923
|
-
a(?x, j962) :- a(?x, n961).
|
|
2924
|
-
a(?x, n963) :- a(?x, n962).
|
|
2925
|
-
a(?x, i963) :- a(?x, n962).
|
|
2926
|
-
a(?x, j963) :- a(?x, n962).
|
|
2927
|
-
a(?x, n964) :- a(?x, n963).
|
|
2928
|
-
a(?x, i964) :- a(?x, n963).
|
|
2929
|
-
a(?x, j964) :- a(?x, n963).
|
|
2930
|
-
a(?x, n965) :- a(?x, n964).
|
|
2931
|
-
a(?x, i965) :- a(?x, n964).
|
|
2932
|
-
a(?x, j965) :- a(?x, n964).
|
|
2933
|
-
a(?x, n966) :- a(?x, n965).
|
|
2934
|
-
a(?x, i966) :- a(?x, n965).
|
|
2935
|
-
a(?x, j966) :- a(?x, n965).
|
|
2936
|
-
a(?x, n967) :- a(?x, n966).
|
|
2937
|
-
a(?x, i967) :- a(?x, n966).
|
|
2938
|
-
a(?x, j967) :- a(?x, n966).
|
|
2939
|
-
a(?x, n968) :- a(?x, n967).
|
|
2940
|
-
a(?x, i968) :- a(?x, n967).
|
|
2941
|
-
a(?x, j968) :- a(?x, n967).
|
|
2942
|
-
a(?x, n969) :- a(?x, n968).
|
|
2943
|
-
a(?x, i969) :- a(?x, n968).
|
|
2944
|
-
a(?x, j969) :- a(?x, n968).
|
|
2945
|
-
a(?x, n970) :- a(?x, n969).
|
|
2946
|
-
a(?x, i970) :- a(?x, n969).
|
|
2947
|
-
a(?x, j970) :- a(?x, n969).
|
|
2948
|
-
a(?x, n971) :- a(?x, n970).
|
|
2949
|
-
a(?x, i971) :- a(?x, n970).
|
|
2950
|
-
a(?x, j971) :- a(?x, n970).
|
|
2951
|
-
a(?x, n972) :- a(?x, n971).
|
|
2952
|
-
a(?x, i972) :- a(?x, n971).
|
|
2953
|
-
a(?x, j972) :- a(?x, n971).
|
|
2954
|
-
a(?x, n973) :- a(?x, n972).
|
|
2955
|
-
a(?x, i973) :- a(?x, n972).
|
|
2956
|
-
a(?x, j973) :- a(?x, n972).
|
|
2957
|
-
a(?x, n974) :- a(?x, n973).
|
|
2958
|
-
a(?x, i974) :- a(?x, n973).
|
|
2959
|
-
a(?x, j974) :- a(?x, n973).
|
|
2960
|
-
a(?x, n975) :- a(?x, n974).
|
|
2961
|
-
a(?x, i975) :- a(?x, n974).
|
|
2962
|
-
a(?x, j975) :- a(?x, n974).
|
|
2963
|
-
a(?x, n976) :- a(?x, n975).
|
|
2964
|
-
a(?x, i976) :- a(?x, n975).
|
|
2965
|
-
a(?x, j976) :- a(?x, n975).
|
|
2966
|
-
a(?x, n977) :- a(?x, n976).
|
|
2967
|
-
a(?x, i977) :- a(?x, n976).
|
|
2968
|
-
a(?x, j977) :- a(?x, n976).
|
|
2969
|
-
a(?x, n978) :- a(?x, n977).
|
|
2970
|
-
a(?x, i978) :- a(?x, n977).
|
|
2971
|
-
a(?x, j978) :- a(?x, n977).
|
|
2972
|
-
a(?x, n979) :- a(?x, n978).
|
|
2973
|
-
a(?x, i979) :- a(?x, n978).
|
|
2974
|
-
a(?x, j979) :- a(?x, n978).
|
|
2975
|
-
a(?x, n980) :- a(?x, n979).
|
|
2976
|
-
a(?x, i980) :- a(?x, n979).
|
|
2977
|
-
a(?x, j980) :- a(?x, n979).
|
|
2978
|
-
a(?x, n981) :- a(?x, n980).
|
|
2979
|
-
a(?x, i981) :- a(?x, n980).
|
|
2980
|
-
a(?x, j981) :- a(?x, n980).
|
|
2981
|
-
a(?x, n982) :- a(?x, n981).
|
|
2982
|
-
a(?x, i982) :- a(?x, n981).
|
|
2983
|
-
a(?x, j982) :- a(?x, n981).
|
|
2984
|
-
a(?x, n983) :- a(?x, n982).
|
|
2985
|
-
a(?x, i983) :- a(?x, n982).
|
|
2986
|
-
a(?x, j983) :- a(?x, n982).
|
|
2987
|
-
a(?x, n984) :- a(?x, n983).
|
|
2988
|
-
a(?x, i984) :- a(?x, n983).
|
|
2989
|
-
a(?x, j984) :- a(?x, n983).
|
|
2990
|
-
a(?x, n985) :- a(?x, n984).
|
|
2991
|
-
a(?x, i985) :- a(?x, n984).
|
|
2992
|
-
a(?x, j985) :- a(?x, n984).
|
|
2993
|
-
a(?x, n986) :- a(?x, n985).
|
|
2994
|
-
a(?x, i986) :- a(?x, n985).
|
|
2995
|
-
a(?x, j986) :- a(?x, n985).
|
|
2996
|
-
a(?x, n987) :- a(?x, n986).
|
|
2997
|
-
a(?x, i987) :- a(?x, n986).
|
|
2998
|
-
a(?x, j987) :- a(?x, n986).
|
|
2999
|
-
a(?x, n988) :- a(?x, n987).
|
|
3000
|
-
a(?x, i988) :- a(?x, n987).
|
|
3001
|
-
a(?x, j988) :- a(?x, n987).
|
|
3002
|
-
a(?x, n989) :- a(?x, n988).
|
|
3003
|
-
a(?x, i989) :- a(?x, n988).
|
|
3004
|
-
a(?x, j989) :- a(?x, n988).
|
|
3005
|
-
a(?x, n990) :- a(?x, n989).
|
|
3006
|
-
a(?x, i990) :- a(?x, n989).
|
|
3007
|
-
a(?x, j990) :- a(?x, n989).
|
|
3008
|
-
a(?x, n991) :- a(?x, n990).
|
|
3009
|
-
a(?x, i991) :- a(?x, n990).
|
|
3010
|
-
a(?x, j991) :- a(?x, n990).
|
|
3011
|
-
a(?x, n992) :- a(?x, n991).
|
|
3012
|
-
a(?x, i992) :- a(?x, n991).
|
|
3013
|
-
a(?x, j992) :- a(?x, n991).
|
|
3014
|
-
a(?x, n993) :- a(?x, n992).
|
|
3015
|
-
a(?x, i993) :- a(?x, n992).
|
|
3016
|
-
a(?x, j993) :- a(?x, n992).
|
|
3017
|
-
a(?x, n994) :- a(?x, n993).
|
|
3018
|
-
a(?x, i994) :- a(?x, n993).
|
|
3019
|
-
a(?x, j994) :- a(?x, n993).
|
|
3020
|
-
a(?x, n995) :- a(?x, n994).
|
|
3021
|
-
a(?x, i995) :- a(?x, n994).
|
|
3022
|
-
a(?x, j995) :- a(?x, n994).
|
|
3023
|
-
a(?x, n996) :- a(?x, n995).
|
|
3024
|
-
a(?x, i996) :- a(?x, n995).
|
|
3025
|
-
a(?x, j996) :- a(?x, n995).
|
|
3026
|
-
a(?x, n997) :- a(?x, n996).
|
|
3027
|
-
a(?x, i997) :- a(?x, n996).
|
|
3028
|
-
a(?x, j997) :- a(?x, n996).
|
|
3029
|
-
a(?x, n998) :- a(?x, n997).
|
|
3030
|
-
a(?x, i998) :- a(?x, n997).
|
|
3031
|
-
a(?x, j998) :- a(?x, n997).
|
|
3032
|
-
a(?x, n999) :- a(?x, n998).
|
|
3033
|
-
a(?x, i999) :- a(?x, n998).
|
|
3034
|
-
a(?x, j999) :- a(?x, n998).
|
|
3035
|
-
a(?x, n1000) :- a(?x, n999).
|
|
3036
|
-
a(?x, i1000) :- a(?x, n999).
|
|
3037
|
-
a(?x, j1000) :- a(?x, n999).
|
|
3038
|
-
|
|
3039
|
-
% ARC checks
|
|
3040
|
-
|
|
3041
|
-
arc(check1, "C1 OK - the starting classification n0 is present.") :-
|
|
3042
|
-
once(a(ind, n0)).
|
|
3043
|
-
|
|
3044
|
-
arc(check2, "C2 OK - the first expansion produced n1 together with side labels i1 and j1.") :-
|
|
3045
|
-
once(a(ind, n1)),
|
|
3046
|
-
once(a(ind, i1)),
|
|
3047
|
-
once(a(ind, j1)).
|
|
3048
|
-
|
|
3049
|
-
arc(check3, "C3 OK - the chain reaches the midpoint n500 and still carries both side-label branches.") :-
|
|
3050
|
-
once(a(ind, n500)),
|
|
3051
|
-
once(a(ind, i500)),
|
|
3052
|
-
once(a(ind, j500)).
|
|
3053
|
-
|
|
3054
|
-
arc(check4, "C4 OK - the final taxonomy step from n999 to n1000 was completed.") :-
|
|
3055
|
-
once(a(ind, n999)),
|
|
3056
|
-
once(a(ind, n1000)).
|
|
3057
|
-
|
|
3058
|
-
arc(check5, "C5 OK - once n1000 is reached, the terminal class a2 is derived.") :-
|
|
3059
|
-
once(a(ind, n1000)),
|
|
3060
|
-
once(a(ind, a2)).
|
|
3061
|
-
|
|
3062
|
-
arc(check6, "C6 OK - the success flag is raised only after the terminal class a2 is present.") :-
|
|
3063
|
-
once(a(ind, a2)),
|
|
3064
|
-
once(is(test, true)).
|
|
3065
|
-
|
|
3066
|
-
% ARC report
|
|
3067
|
-
|
|
3068
|
-
answer(report, "The test succeeds: starting from one individual classified as n0, the rules eventually classify it as n1000 and then as a2.") :-
|
|
3069
|
-
once(is(test, true)).
|
|
3070
|
-
|
|
3071
|
-
reason(report, "The adjacent rules mirror the Eyeling N3 deep-taxonomy-1000 chain. Redundant checkpoint rules are included only as proof accelerators: each shortcut is entailed by the adjacent chain, and once/1 prevents backtracking into the long adjacent-only proof after a check has succeeded.") :-
|
|
3072
|
-
once(a(ind, a2)),
|
|
3073
|
-
once(is(test, true)).
|
|
3074
|
-
|
|
3075
|
-
checkPassed(report, ?check) :-
|
|
3076
|
-
arc(?check, ?_message).
|
|
3077
|
-
|
|
3078
|
-
result(report, success) :-
|
|
3079
|
-
once(is(test, true)),
|
|
3080
|
-
once(arc(check1, ?_c1)),
|
|
3081
|
-
once(arc(check2, ?_c2)),
|
|
3082
|
-
once(arc(check3, ?_c3)),
|
|
3083
|
-
once(arc(check4, ?_c4)),
|
|
3084
|
-
once(arc(check5, ?_c5)),
|
|
3085
|
-
once(arc(check6, ?_c6)).
|