FormallyProvedStateDescriptions.java
01 /* This file is part of the project "Hilbert II" - http://www.qedeq.org
02  *
03  * Copyright 2000-2013,  Michael Meyling <mime@qedeq.org>.
04  *
05  * "Hilbert II" is free software; you can redistribute
06  * it and/or modify it under the terms of the GNU General Public
07  * License as published by the Free Software Foundation; either
08  * version 2 of the License, or (at your option) any later version.
09  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  */
15 
16 package org.qedeq.kernel.se.state;
17 
18 /**
19  * This interface provides primitive constants for the {@link FormallyProvedState}.
20  *
21  @author  Michael Meyling
22  */
23 public interface FormallyProvedStateDescriptions {
24 
25     /** Code for unchecked state. */
26     public static final int STATE_CODE_UNCHECKED = 0;
27 
28     /** Description for unchecked state. */
29     public static final String STATE_STRING_UNCHECKED = "unchecked";
30 
31     /** Code for external checking phase. */
32     public static final int STATE_CODE_EXTERNAL_CHECKING = 21;
33 
34     /** Description for external internal checking phase. */
35     public static final String STATE_STRING_EXTERNAL_CHECKING = "checking imports";
36 
37     /** Code for external check failure. */
38     public static final int STATE_CODE_EXTERNAL_CHECKING_FAILED = 22;
39 
40     /** Description for external check failure. */
41     public static final String STATE_STRING_EXTERNAL_CHECKING_FAILED = "checking imports failed";
42 
43     /** Code for internal checking phase. */
44     public static final int STATE_CODE_INTERNAL_CHECKING = 23;
45 
46     /** Description for internal checking phase. */
47     public static final String STATE_STRING_INTERNAL_CHECKING = "checking formal proofs";
48 
49     /** Code for check failure. */
50     public static final int STATE_CODE_INTERNAL_CHECKING_FAILED = 24;
51 
52     /** Description for check failure. */
53     public static final String STATE_STRING_INTERNAL_CHECKING_FAILED
54         "checking formal proofs failed";
55 
56     /** Code for successfully completely checked state. */
57     public static final int STATE_CODE_COMPLETELY_CHECKED = 25;
58 
59     /** Description for successfully completely checked state. */
60     public static final String STATE_STRING_COMPLETELY_CHECKED
61         "correct formal proofs for every proposition";
62 
63 }