proof_statuses.rb revision 6b3c7e4142f5868d6ad67b43926905ffa851caec
statuses = [
{ 'identifier' => 'OPN',
'name' => 'Open',
'label' => 'default',
'description' => 'Not solved at all.',
'solved' => false},
{ 'identifier' => 'USD',
'name' => 'Unsolved',
'label' => 'default',
'description' => 'Not solved by a system.',
'solved' => false},
{ 'identifier' => 'UNK',
'name' => 'Unknown',
'label' => 'default',
'description' => ['Not solved by a system,',
'solved' => false},
{ 'identifier' => 'SOL',
'name' => 'Solved',
'label' => 'success',
'description' => 'Solved by a system.',
'solved' => true},
{ 'identifier' => 'SAT',
'name' => 'Satisfiable',
'label' => 'success',
'description' => ['Some interpretations are models of Ax',
'Some models of Ax are models of C',
'+ Shows: F is satisfiable; ~F is not valid; C is not a theorem of Ax',
'solved' => true}]
end
end