Searched refs:axiom_selection (Results 1 - 18 of 18) sorted by relevance

/ontohub/app/models/
H A Dmanual_axiom_selection.rb2 acts_as :axiom_selection
H A Dsine_symbol_commonness.rb3 belongs_to :axiom_selection
H A Dsine_symbol_axiom_trigger.rb4 belongs_to :axiom_selection
H A Dproof_attempt_configuration.rb4 belongs_to :axiom_selection
12 has_many :axioms, through: :axiom_selection
24 options[:axioms] = axiom_selection.axioms if axiom_selection.axioms.any?
H A Dsine_axiom_selection.rb10 acts_as :axiom_selection
25 delegate :goal, :ontology, :lock_key, :mark_as_finished!, to: :axiom_selection
40 # `axiom_selection` association is polymorphic.
42 SineSymbolCommonness.where(axiom_selection_id: axiom_selection)
46 # `axiom_selection` association is polymorphic.
48 SineSymbolAxiomTrigger.where(axiom_selection_id: axiom_selection)
110 goal.proof_attempts.includes(:axiom_selection).map(&:axiom_selection).
113 as.id != axiom_selection.id
H A Dproof_attempt.rb11 has_one :axiom_selection, through: :proof_attempt_configuration
68 selected = proof_attempt_configuration.axiom_selection.axioms
/ontohub/spec/factories/
H A Dproof_attempt_configuration_factory.rb9 unless pac.axiom_selection
10 pac.axiom_selection = create :axiom_selection,
H A Daxiom_selection_factory.rb2 factory :axiom_selection do
38 proof_attempt_configuration.axiom_selection = sas.axiom_selection
39 sas.axiom_selection.proof_attempt_configurations = [proof_attempt_configuration]
/ontohub/spec/models/
H A Daxiom_selection_spec.rb6 let(:axiom_selection) { pac.axiom_selection }
7 subject { axiom_selection }
H A Dproof_attempt_configuration_spec.rb7 it { should belong_to(:axiom_selection) }
23 subject.axiom_selection.axioms = []
45 it 'with axiom_selection set' do
47 subject.axiom_selection.axioms = [Axiom.first]
H A Dsine_axiom_selection_spec.rb115 subject.axiom_selection.proof_attempt_configurations.first.proof_attempt
121 pac.axiom_selection = subject.axiom_selection
122 sine_axiom_selection_previous.axiom_selection.
/ontohub/spec/lib/
H A Daxiom_selection_proof_status_spec.rb39 let(:axiom_selection) { create :manual_axiom_selection, axioms: axioms }
45 pac.axiom_selection = axiom_selection.axiom_selection
62 let(:axiom_selection) { create :manual_axiom_selection, axioms: [] }
68 pac.axiom_selection = axiom_selection.axiom_selection
85 let(:axiom_selection) do
93 pac.axiom_selection
[all...]
H A Dproof_status_determining_spec.rb31 let(:axiom_selection) { create :manual_axiom_selection, axioms: [] }
45 pac.axiom_selection = axiom_selection.axiom_selection
85 pac.axiom_selection = axiom_selection.axiom_selection
116 pac.axiom_selection = axiom_selection.axiom_selection
[all...]
H A Dproof_spec.rb94 expect(proof_modified.axiom_selection.specific.class).
99 expect(proof_modified.axiom_selection.axioms).
192 expect(proof_modified.axiom_selection.specific.class).
209 expect(proof_modified.axiom_selection.specific.class).
215 expect(proof_modified.axiom_selection.axioms).
/ontohub/db/migrate/
H A D20150715081880_create_sine_symbol_commonnesses.rb4 t.references :axiom_selection
H A D20150715081870_create_sine_symbol_axiom_triggers.rb4 t.references :axiom_selection
/ontohub/app/fake_records/
H A Dproof.rb73 def axiom_selection method in class:Proof
74 specific_axiom_selection.try(:axiom_selection)
136 pac.axiom_selection = axiom_selection
/ontohub/lib/
H A Dproof_execution.rb20 proof_attempt_configuration.axiom_selection.specific.call

Completed in 42 milliseconds