# $Id: tms.ttl 7605 2007-12-03 06:52:09Z cph $ # # Copyright (C) 2007 Massachusetts Institute of Technology # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA # 02110-1301, USA. # TMS structures @prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix tms: . tms:justification rdfs:domain tms:Node; rdfs:range [ owl:unionOf (tms:Premise tms:Justification) ]. tms:premise a tms:Premise. tms:antecedent-expr rdfs:domain tms:Justification; rdfs:range tms:Antecedent-expr. tms:rule-name rdfs:domain tms:Justification; rdfs:range rdfs:Resource. tms:Antecedent-expr owl:unionOf ( tms:Node tms:Expr-justification ). tms:Expr-justification owl:unionOf ( tms:Not-justification tms:And-justification tms:Or-justification ). tms:Not-justification a owl:Restriction; owl:onProperty tms:sub-expr; owl:cardinality 1 . tms:sub-expr rdfs:domain tms:Expr-justification; rdfs:range tms:Antecedent-expr.