Cross Reference: proof_attempt.rb
xref
: /
ontohub
/
app
/
models
/
proof_attempt.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
proof_attempt.rb revision aaca6ecef6de30842e9afb0bfb04a648a84abf5c
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
class
ProofAttempt
<
ActiveRecord
::
Base
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
belongs_to
:
theorem
,
foreign_key
:
'sentence_id'
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
belongs_to
:
proof_status
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
has_and_belongs_to_many
:
used_axioms
,
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
class_name
:
'Sentence'
,
ac7985784d08a3655291f24f711812b4d8b1cbcf
fuankg
join_table
:
'used_axioms_proof_attempts'
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
attr_accessible
:
prover
, :
prover_output
, :
tactic_script
, :
time_taken
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
validates_presence_of
:
theorem
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
after_save
:
update_theorem_status
0662ed52e814f8f08ef0e09956413a792584eddf
fuankg
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
def
update_theorem_status
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
theorem.update
_proof_status
(
proof_status
)
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
end
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes
end
d3fc1a9aec53a772142e2909441b213f3ae8102a
bnicholes