SPASS  I<filename>
                    To disable all SPASS output except for the final result:
        SPASS  -PGiven=0 -PProblem=0 I<filename>
                     
                    The results of problem analysis are shown, which influence how the prover is set up in auto-mode. Activated inference and reduction rules, along with extra configuration settings are displayed. Also the selected precedence and ordering type is shown. If -Trans flag is activated SPASS also reports which predicates will be subject of the chaining calculus.
        <clause number>[<split level>:<clause origin>:<parent clauses>] <sort literals> || <antecedent literals> -> <succedent literals>.
                         Clause origin is a three letter acronym denoting the inference that generated the clause. 
                          Clauses coming from the input are marked by ``Inp''.
                          Parent clauses are a comma separated list of all the clause's parents (their number depends on the inference), 
                          where for each parent its clause number is printed, followed by a dot sign, 
                          followed by a literal index (index of the literal which had the main role in the inference; 
                          starting form zero, indexing from left to right).
                          The symbols printed after literals mark their special properties: 
                           If a literal is maximal in a clause, it is marked with ``*''. 
                           If maximal literal is an oriented equality, second ``*'' is added. 
                           If maximal literal's symbol is a transitive predicate, 
                           symbols ``l'' and ``r'' are used to denote that the lefthand-side (righthand-side) term is the bigger of the two. 
                           Selected negative literals are marked by ``+''.
                      
        list_of_settings(SPASS).
        {*
          set_flag(DocProof,1).
        *}
        end_of_list.
                    to set the DocProof flag.
There are three types of options you can set in the input:
Every entry in the list has the form
        SYMBOL | (SYMBOL, WEIGHT [, {l, r, m}])
                        You can use the second form to assign weights to symbols (for KBO) or a status (for RPOS). Status is either @t{l} for left-to-right, @t{m} for multiset, or @t{r} for right-to-left. Weight is given as an integer.
        set_DomPred(P).
                        then in the clause
         -> R(f(x,y),a), P(x,a).
                        the atom P(x,a) is strictly maximal. Predicates listed by the set_DomPred option are compared according to the precedence.
        set_ClauseFormulaRelation((1,ax2),(2,ax1),(3,ax3,ax1)).