Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/PVS/reals/   (PVS Prover Version 6.0.9©)  Datei vom 28.9.2014 mit Größe 1 kB image not shown  

Quelle  connected_set.pvs

  Sprache: PVS
 

%------------------------------------------------------------------------------
% connected_set
% All type of intervals are connected sets
%------------------------------------------------------------------------------

connected_set : THEORY
BEGIN

   x,y : VAR real
                  
   Connected : TYPE = 
     {s:set[real] | FORALL (a,b:(s)),(c:real): a <= c AND c <= b IMPLIES s(c)}

   ConnectedGt(x)     : TYPE = {s:Connected | FORALL (z:(s)): z > x}

   ConnectedGe(x)     : TYPE = {s:Connected | FORALL (z:(s)): z >= x}

   ConnectedLt(x)     : TYPE = {s:Connected | FORALL (z:(s)): z < x}

   ConnectedLe(x)     : TYPE = {s:Connected | FORALL (z:(s)): z <= x}

   ConnectedGtLt(x,y) : TYPE = {s:Connected | FORALL (z:(s)): x < z AND z < y}

   ConnectedGtLe(x,y) : TYPE = {s:Connected | FORALL (z:(s)): x < z AND z <= y}

   ConnectedGeLt(x,y) : TYPE = {s:Connected | FORALL (z:(s)): x <= z AND z < y}

   ConnectedGeLe(x,y): TYPE = {s:Connected | FORALL (z:(s)): x <= z AND z <= y}

   % (x,...)
   OpenInf(x) : ConnectedGt(x) = {z:real | z > x}

   % [x,...)
   CloseInf(x) : ConnectedGe(x) = {z:real | z >= x}

   % (...,x)
   InfOpen(x) : ConnectedLt(x) = {z:real | z < x}

   % (...,x]
   InfClose(x) : ConnectedLe(x) = {z:real | z <= x}

   % (x,y)
   OpenOpen(x,y) : ConnectedGtLt(x,y) = {z:real | x < z AND z < y}

   % (x,y]
   OpenClose(x,y) : ConnectedGtLe(x,y) = {z:real | x < z AND z <= y}

   % [x,y)
   CloseOpen(x,y) : ConnectedGeLt(x,y) = {z:real | x <= z AND z < y}

   % [x,y]
   CloseClose(x,y) : ConnectedGeLe(x,y) = {z:real | x <= z AND z <= y}

END connected_set

Messung V0.5 in Prozent
C=78 H=44 G=62

¤ Dauer der Verarbeitung: 0.0 Sekunden  (vorverarbeitet am  2026-06-15) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.