]> OCCT Git - occt-copy.git/commitdiff
0023746: IGES wheel model fails to load when OCCT unit is meters
authorika <ika@opencascade.com>
Thu, 25 Jul 2013 08:39:12 +0000 (12:39 +0400)
committerika <ika@opencascade.com>
Thu, 25 Jul 2013 08:39:12 +0000 (12:39 +0400)
Add check for too small distances during edges reordering
Fix writing TrimmedSurface (Type 144).
Fix checking for too small distances between loops of edges during edge's reordering.
Add checking for too small BSpline segments during reading and writing IGES.
Fix wire splitting by adding checking that vertexes same not only in 3d, but in 2d too.
use tolerance of vertexes recomputed through resolution surface, not 2d curves.
Adding test case for this fix
Modified test case bugs iges bug23746 and cases in group de according to new reference data

74 files changed:
src/BRepToIGES/BRepToIGES_BRShell.cxx
src/GeomToIGES/GeomToIGES_GeomCurve.cxx
src/IGESGeom/IGESGeom_ToolTrimmedSurface.cxx
src/IGESToBRep/IGESToBRep_BRepEntity.cxx
src/IGESToBRep/IGESToBRep_BasicCurve.cxx
src/IGESToBRep/IGESToBRep_TopoSurface.cxx
src/ShapeAnalysis/ShapeAnalysis_WireOrder.cxx
src/ShapeFix/ShapeFix_Face.cxx
tests/bugs/iges/bug23746 [new file with mode: 0755]
tests/de/iges_1/A4
tests/de/iges_1/A5
tests/de/iges_1/A6
tests/de/iges_1/A8
tests/de/iges_1/D1
tests/de/iges_1/H2
tests/de/iges_1/H5
tests/de/iges_1/H7
tests/de/iges_1/I2
tests/de/iges_1/I7
tests/de/iges_1/J2
tests/de/iges_1/J3
tests/de/iges_1/K2
tests/de/iges_1/K3
tests/de/iges_1/K4
tests/de/iges_1/K6
tests/de/iges_1/K7
tests/de/iges_1/K8
tests/de/iges_1/L5
tests/de/iges_1/L9
tests/de/iges_1/M9
tests/de/iges_1/N3
tests/de/iges_1/N4
tests/de/iges_1/O4
tests/de/iges_1/P7
tests/de/iges_1/Q2
tests/de/iges_1/R1
tests/de/iges_1/R4
tests/de/iges_1/R6
tests/de/iges_1/R7
tests/de/iges_2/A1
tests/de/iges_2/A2
tests/de/iges_2/A5
tests/de/iges_2/B2
tests/de/iges_2/B3
tests/de/iges_2/B8
tests/de/iges_2/B9
tests/de/iges_2/C2
tests/de/iges_2/C3
tests/de/iges_2/C5
tests/de/iges_2/C9
tests/de/iges_2/D1
tests/de/iges_2/D3
tests/de/iges_2/E6
tests/de/iges_2/F1
tests/de/iges_2/F8
tests/de/iges_2/G2
tests/de/iges_2/G3
tests/de/iges_2/G6
tests/de/iges_2/G8
tests/de/iges_2/G9
tests/de/iges_2/H5
tests/de/iges_2/H6
tests/de/iges_2/I8
tests/de/iges_2/I9
tests/de/iges_2/J1
tests/de/iges_3/A3
tests/de/iges_3/A4
tests/de/iges_3/A5
tests/de/iges_3/A6
tests/de/iges_3/A7
tests/de/iges_3/B1
tests/de/step_1/E3
tests/de/step_3/E6
tests/de/step_5/A1

index 57a81238116ce63058e931dd3a250d79b98a8ba4..52953a6c8edac959c77f05ba3637ac14437e2e4b 100755 (executable)
@@ -249,9 +249,15 @@ Handle(IGESData_IGESEntity) BRepToIGES_BRShell ::TransferFace(const TopoDS_Face&
 
   // returns the TrimmedSurface
   // --------------------------
-  Standard_Boolean Flag = Standard_True; // pour l`instant
+  Standard_Boolean Flag = Standard_True; 
   Handle(IGESGeom_TrimmedSurface) TrimmedSurf = new IGESGeom_TrimmedSurface;
-  TrimmedSurf-> Init (ISurf, Flag, IOuter, Tab);
+  if (BRep_Tool::NaturalRestriction(start)) {
+    //if face bounds and surface bounds are same, outer wire is unnecessary
+    Standard_Boolean Flag = Standard_False; 
+    TrimmedSurf-> Init (ISurf, Flag, NULL, Tab);
+  }
+  else
+    TrimmedSurf-> Init (ISurf, Flag, IOuter, Tab);
 
   res = TrimmedSurf;
   if (IsReversed) myface.Reverse();
index 2697ce86ce4848816e0f01f310c1e0087a47b71c..99187c1e08966b1b50f76c132b8dd862bbc25949 100755 (executable)
@@ -324,7 +324,8 @@ Handle(IGESData_IGESEntity) GeomToIGES_GeomCurve::TransferCurve
       OCC_CATCH_SIGNALS
       Handle(Geom_BSplineCurve) bspl = Handle(Geom_BSplineCurve)::DownCast ( mycurve->Copy() ); 
       if ( ! bspl.IsNull() ) {
-       bspl->Segment ( Umin, Umax );
+        if (Abs(Umax-Umin) > Precision::PConfusion())
+          bspl->Segment ( Umin, Umax );
        mycurve = bspl;
       }
     }
index 80d37a9d85a2c692ee5d3ecd74f06c5a02846c7c..52a9ed61e109908c774c89f04727a9a060e3db07 100755 (executable)
@@ -186,7 +186,10 @@ void IGESGeom_ToolTrimmedSurface::WriteOwnParams
   IW.Send(ent->OuterBoundaryType());
   IW.Send(up);
 
-  IW.Send(ent->OuterContour());
+  if (ent->OuterBoundaryType())
+    IW.Send(ent->OuterContour());
+  else 
+    IW.Send(0);
   Standard_Integer I;
   for (I = 1; I <= up; I ++)
     IW.Send(ent->InnerContour(I));
index 6d628e7fd30013ac50de056ff78bb009d9084313..6899e95cae7441f2fa24053c501bb1b815b63ea5 100755 (executable)
@@ -496,7 +496,7 @@ TopoDS_Shape IGESToBRep_BRepEntity::TransferFace
          //#62 rln 10.01.99 PRO17015 (reading back IGES written in 'BRep' mode) face #65
          F = TopoDS::Face (myshape);
          F.EmptyCopy();
-         if (!hasouterloop) B.NaturalRestriction (F,Standard_True);
+         if (nbloops == 0) B.NaturalRestriction (F,Standard_True);
          
          // Loops
          // -----
index fe86fdedef3b13c0d02fe8e99c29644a72e62ae8..e67d398b1efeb215d3b1620d64b6a3929dec4d53 100755 (executable)
@@ -1130,7 +1130,8 @@ Handle(Geom_Curve) IGESToBRep_BasicCurve::TransferBSplineCurve
        (Last-Ufin)>-Precision::PConfusion()) && Udeb<=Ufin ) {
     try {
       OCC_CATCH_SIGNALS
-      BSplineRes->Segment(Udeb, Ufin);
+      if (Abs(Ufin-Udeb) > Precision::PConfusion())
+        BSplineRes->Segment(Udeb, Ufin);
       res = BSplineRes;
     }
     catch (Standard_Failure) {
index b72f1d237a4b5260abfdd2e574884a0dcd03ed7c..e65114c9b552dacb6e9cf722758293f0b8b2c833 100755 (executable)
@@ -1231,7 +1231,11 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferTrimmedSurface
     face.EmptyCopy();
     TopoDS_Shape myshape1 = TC.TransferCurveOnFace (face, st->OuterContour(), trans, uFact, Standard_False);
     // si ca se passe mal , on recupere au moins la face avec NaturalRestriction
-    if (myshape1 .IsNull()) face = faceres;
+    if (myshape1 .IsNull()) {
+      face = faceres;
+      BRep_Builder B;
+      B.NaturalRestriction(face,Standard_False);
+    }
   }
   for (Standard_Integer i = 1; i <= st->NbInnerContours(); i++) {
     TopoDS_Shape myshape2 = TC.TransferCurveOnFace (face, st->InnerContour(i), trans, uFact, Standard_False);
index 352319b86e5a57c6fa5a5db4631cee4597961da4..d218e75354a06ecaeb10ad8465820be16dd2611b 100755 (executable)
@@ -353,13 +353,13 @@ void ShapeAnalysis_WireOrder::Perform(const Standard_Boolean /*closed*/)
             }
             else 
               minDist = revDist;
-            if(minDist < distmin) {
+            if(minDist < distmin && Abs(distmin - minDist) > tol2) {
               distmin = minDist;
               direct = (dirDist <= revDist);
               lloop = j;
             }
           }
-          if(distmin<minLocDist) {
+          if(distmin < minLocDist && Abs(minLocDist - distmin) > tol2) {
             minLocDist = distmin;
             LocDirect = direct;
             LocNumInLoop = lloop;
@@ -367,7 +367,7 @@ void ShapeAnalysis_WireOrder::Perform(const Standard_Boolean /*closed*/)
           }
          
         }
-        if(minLocDist < minLoopDist) {
+        if(minLocDist < minLoopDist && Abs(minLoopDist - minLocDist) > tol2) {
           minLoopDist = minLocDist;
           loopNum = i;
           loopDirect = LocDirect;
index 70274608d7535fa8864de081cf9f2d6a6cf471df..e433ed746ca99c344148e1663696390d94f27678 100755 (executable)
@@ -41,6 +41,7 @@
 
 #include <Geom2d_Curve.hxx>
 #include <Geom2d_Line.hxx>
+#include <Geom2dAdaptor_Curve.hxx>
 #include <Geom_Curve.hxx>
 #include <Geom_BSplineSurface.hxx>
 #include <GeomAdaptor_HSurface.hxx>
@@ -270,7 +271,7 @@ void ShapeFix_Face::Add (const TopoDS_Wire& wire)
 //purpose  : auxilary - try to split wire (it is needed if some segments
 //           were removed in ShapeFix_Wire::FixSelfIntersection()
 //=======================================================================
-static Standard_Boolean SplitWire(const TopoDS_Wire& wire,
+static Standard_Boolean SplitWire(const TopoDS_Face &face, const TopoDS_Wire& wire,
                                   TopTools_SequenceOfShape& aResWires)
 {
   TColStd_MapOfInteger UsedEdges;
@@ -288,9 +289,10 @@ static Standard_Boolean SplitWire(const TopoDS_Wire& wire,
     sewd1->Add(E1);
     Standard_Boolean IsConnectedEdge = Standard_True;
     for(j=2; j<=sewd->NbEdges() && IsConnectedEdge; j++) {
+      TopoDS_Edge E2;
       for(k=2; k<=sewd->NbEdges(); k++) {
         if(UsedEdges.Contains(k)) continue;
-        TopoDS_Edge E2 = sewd->Edge(k);
+        E2 = sewd->Edge(k);
         TopoDS_Vertex V21 = sae.FirstVertex(E2);
         TopoDS_Vertex V22 = sae.LastVertex(E2);
         if( sae.FirstVertex(E2).IsSame(V1) ) {
@@ -300,15 +302,31 @@ static Standard_Boolean SplitWire(const TopoDS_Wire& wire,
           break;
         }
       }
-      if(V1.IsSame(V0)) {
-        // new wire is closed, put it into sequence
-        aResWires.Append(sewd1->Wire());
-        break;
-      }
       if(k>sewd->NbEdges()) {
         IsConnectedEdge = Standard_False;
         break;
       }
+      if(V1.IsSame(V0)) {
+        //check that V0 and V1 are same in 2d too
+        Standard_Real a1,b1,a2,b2;
+        Handle (Geom2d_Curve) curve1 = BRep_Tool::CurveOnSurface(E1,face,a1,b1);
+        Handle (Geom2d_Curve) curve2 = BRep_Tool::CurveOnSurface(E2,face,a2,b2);
+        gp_Pnt2d v0,v1;
+        if (E1.Orientation() == TopAbs_REVERSED)
+          a1 = b1;
+        if (E2.Orientation() == TopAbs_REVERSED)
+          b2 = a2;
+        curve1->D0(a1,v0);
+        curve2->D0(b2,v1);
+        GeomAdaptor_Surface anAdaptor(BRep_Tool::Surface(face));
+        Standard_Real tol = Max(BRep_Tool::Tolerance(V0),BRep_Tool::Tolerance(V1));
+        Standard_Real maxResolution = 2 * Max ( anAdaptor.UResolution(tol), anAdaptor.VResolution(tol) );
+        if (v0.SquareDistance(v1) < maxResolution) {
+          // new wire is closed, put it into sequence
+          aResWires.Append(sewd1->Wire());
+          break;
+        }
+      }
     }
     if(!IsConnectedEdge) {
       // create new notclosed wire
@@ -595,7 +613,7 @@ Standard_Boolean ShapeFix_Face::Perform()
         }
         nbw++;
         TopoDS_Wire wire = TopoDS::Wire ( iter.Value() );
-        SplitWire(wire,aWires);
+        SplitWire(tmpFace,wire,aWires);
       }
       if(nbw<aWires.Length()) {
         for(Standard_Integer iw=1; iw<=aWires.Length(); iw++)
diff --git a/tests/bugs/iges/bug23746 b/tests/bugs/iges/bug23746
new file mode 100755 (executable)
index 0000000..32058a1
--- /dev/null
@@ -0,0 +1,76 @@
+puts "============"
+puts "OCC23746"
+puts "============"
+puts ""
+#######################################################################
+# IGES wheel model fails to load when OCCT unit is meters
+#######################################################################
+
+param write.iges.brep.mode Faces
+dall
+
+tpclear
+newmodel
+param xstep.cascade.unit MM
+igesbrep [locate_data_file bug23746_wheel.igs] a *
+checkshape a
+tpclear
+newmodel
+set aFile1 ${imagedir}/bug23746_wheel-0.igs
+file delete ${aFile1}
+brepiges a ${aFile1}
+
+tpclear
+newmodel
+param xstep.cascade.unit M
+igesbrep [locate_data_file bug23746_wheel.igs] b *
+checkshape b
+tpclear
+newmodel
+set aFile2 ${imagedir}/bug23746_wheel-1.igs
+file delete ${aFile2}
+brepiges b ${aFile2}
+
+tpclear
+newmodel
+param xstep.cascade.unit MM
+igesbrep ${aFile1} a0 *
+checkshape a0
+tpclear
+newmodel
+set aFile3 ${imagedir}/bug23746_wheel-0-0.igs
+file delete ${aFile3}
+brepiges a0 ${aFile3}
+
+tpclear
+newmodel
+param xstep.cascade.unit M
+igesbrep ${aFile1} b0 *
+checkshape b0
+tpclear
+newmodel
+set aFile4 ${imagedir}/bug23746_wheel-0-1.igs
+file delete ${aFile4}
+brepiges b0 ${aFile4}
+
+tpclear
+newmodel
+param xstep.cascade.unit MM
+igesbrep ${aFile2} a1 *
+checkshape a1
+tpclear
+newmodel
+set aFile5 ${imagedir}/bug23746_wheel-1-0.igs
+file delete ${aFile5}
+brepiges a1 ${aFile5}
+
+tpclear
+newmodel
+param xstep.cascade.unit M
+igesbrep ${aFile2} b1 *
+checkshape b1
+tpclear
+newmodel
+set aFile6 ${imagedir}/bug23746_wheel-1-1.igs
+file delete ${aFile6}
+brepiges b1 ${aFile6}
index 9856e59bff28949a907dd4ea85d25702d77f9bbb..76ab94e2ddb7e9885aa2fa98053b242cc9bd7f68 100644 (file)
@@ -1,14 +1,11 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
-
-
 set filename matinf.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 685  ( 685 )   Summary  = 8191  ( 8193 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 685  ( 685 )   Summary  = 8193  ( 8193 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 685  ( 685 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 3418  ( 3418 )
 TOLERANCE   : MaxTol   =   0.7975995425  (   0.7975995425 )  AvgTol   =   0.01318864138  (   0.01318867194 )
 LABELS      : N0Labels = 1  ( 1 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 1  ( 1 )   NameLabels = 1  ( 1 )   ColorLabels = 0  ( 0 )   LayerLabels = 0  ( 0 )
index 723b60ada9fd2fa04fc6a02a02a229d94554b9ef..8fde2cf27edee58f05df5ade4cd3330f8437d2de 100644 (file)
@@ -1,14 +1,11 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
-
-
 set filename poininfo.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 605  ( 605 )   Summary  = 7232  ( 7234 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 605  ( 605 )   Summary  = 7234  ( 7234 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 605  ( 605 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 3018  ( 3018 )
 TOLERANCE   : MaxTol   =    0.797599617  (    0.797599617 )  AvgTol   =   0.01440213795  (   0.01440217257 )
 LABELS      : N0Labels = 1  ( 1 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 1  ( 1 )   NameLabels = 1  ( 1 )   ColorLabels = 0  ( 0 )   LayerLabels = 0  ( 0 )
index bb9e033049deedae6cc4845e7c8c316870476ee4..8094d684a85f39a13945826729b79070b6b8cd9f 100644 (file)
@@ -1,14 +1,11 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
-
-
 set filename s01.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 0  ( 15 )  Summary  = 0  ( 15 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1416  ( 1416 )   Summary  = 16121  ( 16125 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1416  ( 1416 )   Summary  = 16123  ( 16125 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1416  ( 1416 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 6652  ( 6652 )
 TOLERANCE   : MaxTol   =   0.9671829226  (   0.9671829226 )  AvgTol   =   0.01310886995  (   0.01310984483 )
 LABELS      : N0Labels = 1  ( 1 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 1  ( 1 )   NameLabels = 1  ( 1 )   ColorLabels = 0  ( 0 )   LayerLabels = 0  ( 0 )
index 813d836b60d0c954966643dfbeff308c5dfb051b..e19bd7a33a0870cd747c2b82167fba54947a5852 100644 (file)
@@ -3,11 +3,11 @@ set filename sim1.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 0  ( 7 )  Summary  = 0  ( 7 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 0  ( 8 )  Summary  = 0  ( 8 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 954  ( 954 )   Summary  = 15755  ( 15781 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 954  ( 954 )   Summary  = 15756  ( 15781 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 954  ( 954 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 6942  ( 6942 )
-TOLERANCE   : MaxTol   =   0.9723189972  (   0.9723189972 )  AvgTol   =  0.007899165796  (  0.007903307507 )
+TOLERANCE   : MaxTol   =   0.9723189972  (   0.9723189972 )  AvgTol   =  0.007899165806  (  0.007903307507 )
 LABELS      : N0Labels = 1  ( 1 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 1  ( 1 )   NameLabels = 1  ( 1 )   ColorLabels = 0  ( 0 )   LayerLabels = 0  ( 0 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 0  ( 0 )
index 7697ff1fd3d89ca1ba204a1e999ff5b49fc7d000..842e504d4454a36967b011132abb41192e23c4cc 100644 (file)
@@ -5,7 +5,7 @@ set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 1  ( 2 )  Summary  = 1  ( 2 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1029  ( 1029 )   Summary  = 14016  ( 14019 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1029  ( 1029 )   Summary  = 14017  ( 14019 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1029  ( 1029 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 5991  ( 5989 )
 TOLERANCE   : MaxTol   =   0.9998969699  (   0.9998969699 )  AvgTol   =   0.03184826265  (   0.03187529348 )
 LABELS      : N0Labels = 1  ( 1 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 1  ( 1 )   NameLabels = 1  ( 1 )   ColorLabels = 0  ( 0 )   LayerLabels = 0  ( 0 )
index 558aacef21bfe55a14341738d8f3a69bad1ef3b8..669ee91d92286338e240709a1aa97ceee49c1f19 100644 (file)
@@ -8,9 +8,9 @@ set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 1  ( 24 )  Summary  = 1  ( 24 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 98  ( 98 )   Summary  = 1543  ( 1489 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 98  ( 98 )   FreeWire = 0  ( 0 )   FreeEdge  = 26 ( 26 )   SharedEdge = 687  ( 633 )
-TOLERANCE   : MaxTol   =  0.03645053132  (  0.03645054227 )  AvgTol   =  0.0005473590273  (  0.0005479624657 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 98  ( 98 )   Summary  = 1489  ( 1489 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 98  ( 98 )   FreeWire = 0  ( 0 )   FreeEdge  = 26 ( 26 )   SharedEdge = 633  ( 633 )
+TOLERANCE   : MaxTol   =  0.03645053132  (  0.03645054227 )  AvgTol   =  0.0005450433705  (  0.0005479624657 )
 LABELS      : N0Labels = 124  ( 124 )  N1Labels = 0  ( 87 )  N2Labels = 0  ( 0 )   TotalLabels = 124  ( 211 )   NameLabels = 124  ( 124 )   ColorLabels = 124  ( 211 )   LayerLabels = 124  ( 211 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 1  ( 1 )
index 87aaf83bd1878da97f0f414c09b080e13e063c15..908fbbaa9efbeb3e59fe68f3dc003f7eea5baffe 100644 (file)
@@ -1,5 +1,4 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
 puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 
@@ -8,11 +7,11 @@ set filename BUC60032.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 53 )  Warnings = 74  ( 154 )  Summary  = 74  ( 207 )
+TPSTAT      : Faulties = 0  ( 53 )  Warnings = 36  ( 167 )  Summary  = 36  ( 220 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 42  ( 42 )   Summary  = 1100  ( 1133 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 42  ( 42 )   Summary  = 1134  ( 1133 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 42  ( 42 )   FreeWire = 8  ( 58 )   FreeEdge  = 217 ( 217 )   SharedEdge = 413  ( 395 )
-TOLERANCE   : MaxTol   =   0.9314567018  (  0.01444583491 )  AvgTol   =   0.04857564588  (  0.0003004299328 )
+TOLERANCE   : MaxTol   =   0.9314567018  (  0.01444583491 )  AvgTol   =   0.01569636351  (  0.0003004299328 )
 LABELS      : N0Labels = 3  ( 3 )  N1Labels = 141  ( 209 )  N2Labels = 0  ( 0 )   TotalLabels = 144  ( 212 )   NameLabels = 144  ( 172 )   ColorLabels = 141  ( 209 )   LayerLabels = 140  ( 208 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 6  ( 6 )
index f918e5f664e0b0db77ef2bf4c20db3ad2d5a33a2..084a93869ad4f3cf47f8f1620c0318568251546d 100644 (file)
@@ -1,5 +1,4 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 
 
@@ -7,11 +6,11 @@ set filename BUC60034.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 53 )  Warnings = 4  ( 632 )  Summary  = 4  ( 685 )
+TPSTAT      : Faulties = 0  ( 53 )  Warnings = 2  ( 632 )  Summary  = 2  ( 685 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1766  ( 1766 )   Summary  = 18583  ( 18585 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1766  ( 1766 )   Summary  = 18585  ( 18585 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1766  ( 1766 )   FreeWire = 0  ( 2 )   FreeEdge  = 104 ( 104 )   SharedEdge = 7470  ( 7469 )
-TOLERANCE   : MaxTol   =   0.1881003203  (   0.1881003203 )  AvgTol   =  0.000520145094  (  0.0004561075883 )
+TOLERANCE   : MaxTol   =   0.1881003203  (   0.1881003203 )  AvgTol   =  0.0004558439058  (  0.0004561075883 )
 LABELS      : N0Labels = 3  ( 3 )  N1Labels = 1816  ( 3099 )  N2Labels = 0  ( 0 )   TotalLabels = 1819  ( 3102 )   NameLabels = 1819  ( 1961 )   ColorLabels = 1816  ( 3099 )   LayerLabels = 1816  ( 3099 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 5  ( 5 )
index 90b381253820d02d43ad7cfb5a28e9e3ef40b692..753b764e7da929372da6a5b4c417e35ba58f3c9b 100644 (file)
@@ -7,11 +7,11 @@ set filename BUC60625-2.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 26  ( 61 )  Summary  = 26  ( 61 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 11  ( 61 )  Summary  = 11  ( 61 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 120  ( 120 )   Summary  = 5259  ( 5260 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 120  ( 120 )   FreeWire = 31  ( 31 )   FreeEdge  = 1039 ( 1039 )   SharedEdge = 2053  ( 2048 )
-TOLERANCE   : MaxTol   =    0.763617442  (   0.7636174422 )  AvgTol   =  0.001290845317  (  0.001290629985 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 120  ( 120 )   Summary  = 5254  ( 5260 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 120  ( 120 )   FreeWire = 31  ( 31 )   FreeEdge  = 1039 ( 1039 )   SharedEdge = 2048  ( 2048 )
+TOLERANCE   : MaxTol   =    0.763617442  (   0.7636174422 )  AvgTol   =  0.001290751445  (  0.001290629985 )
 LABELS      : N0Labels = 1051  ( 1051 )  N1Labels = 0  ( 13 )  N2Labels = 0  ( 0 )   TotalLabels = 1051  ( 1064 )   NameLabels = 1051  ( 1051 )   ColorLabels = 971  ( 1064 )   LayerLabels = 971  ( 1051 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 8  ( 8 )
index 0ec270219bc75a4f6b7aef07ec864ae77768527b..e9ea74a18012870386bf4a0545952b061f941569 100644 (file)
@@ -1,16 +1,13 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
-
-
 set filename BUC61004-3.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 2 )  Warnings = 0  ( 0 )  Summary  = 0  ( 2 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 5  ( 21 )  Summary  = 5  ( 21 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 1  ( 21 )  Summary  = 1  ( 21 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1  ( 1 )   Summary  = 10  ( 10 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1  ( 1 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 4  ( 4 )
-TOLERANCE   : MaxTol   =         1e-005  (         1e-007 )  AvgTol   =  9.238461538e-006  (          1e-007 )
+TOLERANCE   : MaxTol   =          1e-07  (          1e-07 )  AvgTol   =           1e-07  (           1e-07 )
 LABELS      : N0Labels = 1  ( 1 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 1  ( 1 )   NameLabels = 1  ( 1 )   ColorLabels = 1  ( 1 )   LayerLabels = 0  ( 0 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 1  ( 1 )
index a230dd57384502d401cf87f86e6b4cfdb332d16f..5d9fae03692b4a6693b821d561ba0bc3cb844c59 100644 (file)
@@ -1,17 +1,19 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
 puts "TODO CR23096 ALL: LABELS : Faulty" 
-puts "TODO CR23096 Mandriva2010: Error : 1 differences with reference data found :"
+
+
+puts "TODO CR23096 Mandriva2010: Error : 1 differences with reference data found :" 
 
 set LinuxDiff 1
 set filename CTS18546-1.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 292  ( 1100 )  Summary  = 292  ( 1100 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 169  ( 1113 )  Summary  = 169  ( 1113 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 900  ( 900 )   Summary  = 18228  ( 18221 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 900  ( 900 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 8220  ( 8213 )
-TOLERANCE   : MaxTol   = 0.004034169186  ( 0.004034577888 )  AvgTol   =  7.892309606e-006  (  1.210857047e-005 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 900  ( 900 )   Summary  = 18221  ( 18221 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 900  ( 900 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 8213  ( 8213 )
+TOLERANCE   : MaxTol   = 0.004034169186  ( 0.004034577888 )  AvgTol   =  7.709492698e-06  (  1.210857047e-05 )
 LABELS      : N0Labels = 900  ( 900 )  N1Labels = 0  ( 929 )  N2Labels = 0  ( 0 )   TotalLabels = 900  ( 1829 )   NameLabels = 900  ( 900 )   ColorLabels = 900  ( 1829 )   LayerLabels = 900  ( 1829 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 1  ( 1 )
index e54750c1d90bbe2ed4a4dbc2ac13f29a7e57ae1c..1fc2b206c3ce1e809b40fc7b70fd6a2491d256b6 100644 (file)
@@ -6,11 +6,11 @@ set filename CTS18546-2.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 42  ( 1090 )  Summary  = 42  ( 1090 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 42  ( 1091 )  Summary  = 42  ( 1091 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1038  ( 1038 )   Summary  = 22109  ( 22098 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1038  ( 1038 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 10016  ( 10005 )
-TOLERANCE   : MaxTol   =   0.5433123154  (   0.5433122968 )  AvgTol   =  0.002230726965  (  0.002235664162 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1038  ( 1038 )   Summary  = 22098  ( 22098 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1038  ( 1038 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 10005  ( 10005 )
+TOLERANCE   : MaxTol   =   0.5433123154  (   0.5433122968 )  AvgTol   =  0.002230678756  (  0.002235663837 )
 LABELS      : N0Labels = 1038  ( 1038 )  N1Labels = 0  ( 1450 )  N2Labels = 0  ( 0 )   TotalLabels = 1038  ( 2488 )   NameLabels = 1038  ( 1038 )   ColorLabels = 1038  ( 2488 )   LayerLabels = 1038  ( 2488 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 2  ( 2 )
index e33c2aacbf05b42c3c02f165032df8cebeda0645..9e9e5d92bce7c357baeabddc63c1e61a66c07d67 100644 (file)
@@ -8,9 +8,9 @@ set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 2  ( 298 )  Summary  = 2  ( 298 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 568  ( 568 )   Summary  = 8541  ( 8540 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 568  ( 568 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 3702  ( 3701 )
-TOLERANCE   : MaxTol   =   0.4977710304  (   0.4977710286 )  AvgTol   =  0.001985075959  (  0.001988149118 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 568  ( 568 )   Summary  = 8540  ( 8540 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 568  ( 568 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 3701  ( 3701 )
+TOLERANCE   : MaxTol   =   0.4977710304  (   0.4977710286 )  AvgTol   =  0.001985067479  (  0.001988149118 )
 LABELS      : N0Labels = 568  ( 569 )  N1Labels = 0  ( 1207 )  N2Labels = 0  ( 0 )   TotalLabels = 568  ( 1776 )   NameLabels = 568  ( 569 )   ColorLabels = 568  ( 1775 )   LayerLabels = 568  ( 1775 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 1  ( 1 )
index 1952cb89de0d91dc52c5be8e921b9d50093fdd89..71bf6180455244b3a79657be9b04752d59137145 100644 (file)
@@ -6,11 +6,11 @@ set filename FRA62468-1.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 315  ( 5224 )  Summary  = 315  ( 5224 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 299  ( 5224 )  Summary  = 299  ( 5224 )
 CHECKSHAPE  : Wires    = 12  ( 18 )  Faces    = 16  ( 16 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 5163  ( 5163 )   Summary  = 68630  ( 68418 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 5163  ( 5163 )   FreeWire = 10  ( 10 )   FreeEdge  = 283 ( 283 )   SharedEdge = 29283  ( 29075 )
-TOLERANCE   : MaxTol   =   0.9874083984  (   0.9875071265 )  AvgTol   =   0.01114330307  (   0.01115568387 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 5163  ( 5163 )   Summary  = 68418  ( 68418 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 5163  ( 5163 )   FreeWire = 10  ( 10 )   FreeEdge  = 283 ( 283 )   SharedEdge = 29071  ( 29075 )
+TOLERANCE   : MaxTol   =   0.9874083984  (   0.9875071265 )  AvgTol   =    0.0111430941  (   0.01115568387 )
 LABELS      : N0Labels = 5392  ( 5458 )  N1Labels = 18  ( 4437 )  N2Labels = 0  ( 0 )   TotalLabels = 5410  ( 9895 )   NameLabels = 5392  ( 5458 )   ColorLabels = 5391  ( 9829 )   LayerLabels = 5391  ( 9829 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 4  ( 4 )
index 30657647f51105d8b8722d625e79c48db2b8ada1..0640c570e4b8966011cfff8ab0ebd303a9366f6d 100644 (file)
@@ -6,11 +6,11 @@ set filename GER60736.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 1 )  Summary  = 0  ( 1 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 642  ( 814 )  Summary  = 642  ( 814 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 550  ( 814 )  Summary  = 550  ( 814 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 406  ( 406 )   Summary  = 23060  ( 23055 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 406  ( 406 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 11148  ( 11143 )
-TOLERANCE   : MaxTol   = 1.005912368e-005  ( 1.005909788e-005 )  AvgTol   =  7.142461941e-007  (  9.442593263e-006 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 406  ( 406 )   Summary  = 23055  ( 23055 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 406  ( 406 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 11143  ( 11143 )
+TOLERANCE   : MaxTol   = 1.005912368e-05  ( 1.005909788e-05 )  AvgTol   =  6.288458987e-07  (  9.442593263e-06 )
 LABELS      : N0Labels = 406  ( 406 )  N1Labels = 0  ( 282 )  N2Labels = 0  ( 0 )   TotalLabels = 406  ( 688 )   NameLabels = 406  ( 406 )   ColorLabels = 406  ( 688 )   LayerLabels = 406  ( 688 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 6  ( 6 )
index 9d33537a0162e5d3677681765709bc0dbff4e12f..fe4903655ecec1df7a04aded3f07daa5f8564e8f 100644 (file)
@@ -1,7 +1,4 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
-
-
 set filename lh3d_px1.igs
 
 set ref_data {
@@ -10,7 +7,7 @@ TPSTAT      : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 442  ( 442 )   Summary  = 4421  ( 4421 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 442  ( 442 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 1768  ( 1768 )
-TOLERANCE   : MaxTol   = 6.72038819e-005  (         1e-007 )  AvgTol   =  6.163440366e-006  (          1e-007 )
+TOLERANCE   : MaxTol   =          1e-07  (          1e-07 )  AvgTol   =           1e-07  (           1e-07 )
 LABELS      : N0Labels = 442  ( 442 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 442  ( 442 )   NameLabels = 442  ( 442 )   ColorLabels = 0  ( 0 )   LayerLabels = 0  ( 0 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 0  ( 0 )
index a878609cc8a42c7928ee9737adddd179a48a56aa..3802c47ef0226cd3f91f60a4e15b86072587d0fe 100644 (file)
@@ -1,7 +1,4 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
-
-
 set filename lh3d_px2.igs
 
 set ref_data {
@@ -10,7 +7,7 @@ TPSTAT      : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 844  ( 844 )   Summary  = 8441  ( 8441 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 844  ( 844 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 3376  ( 3376 )
-TOLERANCE   : MaxTol   = 8.337826092e-005  (         1e-007 )  AvgTol   =  9.235400439e-006  (          1e-007 )
+TOLERANCE   : MaxTol   =          1e-07  (          1e-07 )  AvgTol   =           1e-07  (           1e-07 )
 LABELS      : N0Labels = 844  ( 844 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 844  ( 844 )   NameLabels = 844  ( 844 )   ColorLabels = 0  ( 0 )   LayerLabels = 0  ( 0 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 0  ( 0 )
index 62d1cd7a85a3b8e6db0799e90a4a4fe6eb891a66..a12818f9f2158b221c3ab954f14181abe9a6df48 100644 (file)
@@ -6,11 +6,11 @@ set filename sim6114.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 6  ( 377 )  Summary  = 6  ( 377 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 4  ( 377 )  Summary  = 4  ( 377 )
 CHECKSHAPE  : Wires    = 5  ( 1 )  Faces    = 5  ( 1 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2344  ( 2344 )   Summary  = 27881  ( 27881 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2344  ( 2344 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 11622  ( 11622 )
-TOLERANCE   : MaxTol   =  0.04263273989  (  0.04263273988 )  AvgTol   =  0.0001296452202  (  0.0001295068497 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2344  ( 2344 )   Summary  = 27882  ( 27881 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2344  ( 2344 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 11623  ( 11622 )
+TOLERANCE   : MaxTol   =  0.04263273989  (  0.04263273988 )  AvgTol   =  0.0001295820704  (  0.0001295068497 )
 LABELS      : N0Labels = 2344  ( 2344 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 2344  ( 2344 )   NameLabels = 2344  ( 2344 )   ColorLabels = 2344  ( 2344 )   LayerLabels = 2344  ( 2344 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 2  ( 2 )
index 809f217555c7ac19b79b7ad53e560e689b0a6523..428712b6648163a62c307b5276536a8e828e4f91 100644 (file)
@@ -6,11 +6,11 @@ set filename PRO10578.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 146  ( 886 )  Summary  = 146  ( 886 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 144  ( 886 )  Summary  = 144  ( 886 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 221  ( 221 )   Summary  = 13357  ( 13351 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 221  ( 221 )   FreeWire = 0  ( 0 )   FreeEdge  = 6 ( 6 )   SharedEdge = 6458  ( 6452 )
-TOLERANCE   : MaxTol   =   0.2420465808  (    14.14390218 )  AvgTol   =  0.0001275362136  (   0.01522087451 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 221  ( 221 )   Summary  = 13351  ( 13351 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 221  ( 221 )   FreeWire = 0  ( 0 )   FreeEdge  = 6 ( 6 )   SharedEdge = 6452  ( 6452 )
+TOLERANCE   : MaxTol   =   0.2420465808  (    14.14390218 )  AvgTol   =  0.0001275311626  (   0.01522087451 )
 LABELS      : N0Labels = 232  ( 232 )  N1Labels = 0  ( 6521 )  N2Labels = 0  ( 0 )   TotalLabels = 232  ( 6753 )   NameLabels = 232  ( 347 )   ColorLabels = 227  ( 6753 )   LayerLabels = 227  ( 6753 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 1  ( 1 )
index 1c9caedf2b15223560164e13f8363aa89cdf4906..7bf7305abc66f00eea40ad53b99b61ee20b235c2 100644 (file)
@@ -6,11 +6,11 @@ set filename PRO14665.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 435  ( 710 )  Summary  = 435  ( 710 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 347  ( 710 )  Summary  = 347  ( 710 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2297  ( 2297 )   Summary  = 26169  ( 26114 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2297  ( 2297 )   FreeWire = 0  ( 0 )   FreeEdge  = 22 ( 22 )   SharedEdge = 10829  ( 10774 )
-TOLERANCE   : MaxTol   =   0.2778575821  (   0.2778575802 )  AvgTol   =  0.0007986510083  (  0.0007904431703 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2297  ( 2297 )   Summary  = 26114  ( 26114 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2297  ( 2297 )   FreeWire = 0  ( 0 )   FreeEdge  = 22 ( 22 )   SharedEdge = 10774  ( 10774 )
+TOLERANCE   : MaxTol   =   0.2778575821  (   0.2778575802 )  AvgTol   =  0.0007983843435  (  0.0007904430748 )
 LABELS      : N0Labels = 2329  ( 2329 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 2329  ( 2329 )   NameLabels = 2329  ( 2329 )   ColorLabels = 2319  ( 2329 )   LayerLabels = 2319  ( 2329 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 8  ( 8 )
index 1c55cd770491ab12d45c7c3cdc05a3e0fdadd8a8..d0554b2ebdedafc32ab1ae80f2a8764edd472d1a 100644 (file)
@@ -1,16 +1,13 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
-
-
 set filename ardi1.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 2 )  Warnings = 0  ( 1 )  Summary  = 0  ( 3 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 6  ( 6 )  Summary  = 6  ( 6 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 2  ( 6 )  Summary  = 2  ( 6 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 4  ( 4 )   Summary  = 41  ( 41 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 4  ( 4 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 16  ( 16 )
-TOLERANCE   : MaxTol   =         1e-005  ( 1.000100018e-007 )  AvgTol   =  3.907694616e-006  (  1.00002308e-007 )
+TOLERANCE   : MaxTol   = 1.000100018e-07  ( 1.000100018e-07 )  AvgTol   =  1.00002308e-07  (  1.00002308e-07 )
 LABELS      : N0Labels = 4  ( 4 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 4  ( 4 )   NameLabels = 4  ( 4 )   ColorLabels = 0  ( 0 )   LayerLabels = 0  ( 0 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 0  ( 0 )
index e409d1db376b5cbae75649a88a22eb0369139cce..d8d57a94688a49fa4d64f4583592cda47b1d606a 100644 (file)
@@ -8,9 +8,9 @@ set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 0  ( 286 )  Summary  = 0  ( 286 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 523  ( 523 )   Summary  = 6145  ( 5926 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 523  ( 523 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 2694  ( 2485 )
-TOLERANCE   : MaxTol   =   0.1109937052  (    0.111004803 )  AvgTol   =  0.001892705916  (  0.001893545105 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 523  ( 523 )   Summary  = 5936  ( 5926 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 523  ( 523 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 2485  ( 2485 )
+TOLERANCE   : MaxTol   =   0.1109937052  (    0.111004803 )  AvgTol   =  0.001890312559  (  0.001893545127 )
 LABELS      : N0Labels = 523  ( 523 )  N1Labels = 0  ( 591 )  N2Labels = 0  ( 0 )   TotalLabels = 523  ( 1114 )   NameLabels = 523  ( 641 )   ColorLabels = 523  ( 1114 )   LayerLabels = 523  ( 1114 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 3  ( 3 )
index 380a8a758f5b42784f9eef01c97e0283e701fd73..bc04e33d4f25633161e69ced85a2c2627cea1d85 100644 (file)
@@ -8,9 +8,9 @@ set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 1  ( 14 )  Summary  = 1  ( 14 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 50  ( 50 )   Summary  = 486  ( 450 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 50  ( 50 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 224  ( 189 )
-TOLERANCE   : MaxTol   =         1e-005  (         1e-005 )  AvgTol   =  5.446345115e-006  (  3.006925488e-006 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 50  ( 50 )   Summary  = 451  ( 450 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 50  ( 50 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 189  ( 189 )
+TOLERANCE   : MaxTol   = 8.10120345e-06  (          1e-05 )  AvgTol   =  7.842916874e-07  (  3.006925488e-06 )
 LABELS      : N0Labels = 50  ( 50 )  N1Labels = 0  ( 72 )  N2Labels = 0  ( 0 )   TotalLabels = 50  ( 122 )   NameLabels = 50  ( 50 )   ColorLabels = 50  ( 122 )   LayerLabels = 50  ( 122 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 1  ( 1 )
index 08a07fd19ffd98b940f8cabf836f6a366864ae04..57c7fe3e68b00dd2930231548b881ee6d80fa0c1 100644 (file)
@@ -1,5 +1,4 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
 puts "TODO CR23096 ALL: STATSHAPE : Faulty" 
 puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
@@ -9,11 +8,11 @@ set filename UKI60556.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 1 )  Summary  = 0  ( 1 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 569  ( 1005 )  Summary  = 569  ( 1005 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 427  ( 1005 )  Summary  = 427  ( 1005 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 300  ( 300 )   Summary  = 50226  ( 50232 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 300  ( 300 )   Summary  = 50240  ( 50232 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 300  ( 300 )   FreeWire = 119  ( 139 )   FreeEdge  = 4488 ( 4487 )   SharedEdge = 24686  ( 24678 )
-TOLERANCE   : MaxTol   =   0.2692383113  (  0.06099237775 )  AvgTol   =  0.000220907236  (  1.621424764e-005 )
+TOLERANCE   : MaxTol   =   0.2692383113  (  0.06099237775 )  AvgTol   =  0.0001130111878  (  1.621424764e-05 )
 LABELS      : N0Labels = 432  ( 432 )  N1Labels = 12  ( 845 )  N2Labels = 0  ( 0 )   TotalLabels = 444  ( 1277 )   NameLabels = 432  ( 687 )   ColorLabels = 320  ( 1277 )   LayerLabels = 320  ( 1277 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 6  ( 6 )
index 5cea4daff2075b4594e0fdcf298b490c25d6b73c..6c6a9760339f846cebc55b501c0e9eb6820f095a 100644 (file)
@@ -1,17 +1,20 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
+puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
-puts "TODO CR23096 Mandriva2010: Error : 1 differences with reference data found :"
+
+
+puts "TODO CR23096 Mandriva2010: Error : 1 differences with reference data found :" 
 
 set LinuxDiff 1
 set filename igsFB2.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 131  ( 771 )  Summary  = 131  ( 771 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 95  ( 771 )  Summary  = 95  ( 771 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 770  ( 770 )   Summary  = 12764  ( 12759 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 770  ( 770 )   FreeWire = 36  ( 36 )   FreeEdge  = 232 ( 232 )   SharedEdge = 5554  ( 5545 )
-TOLERANCE   : MaxTol   =   0.9845041621  (   0.9845038147 )  AvgTol   =    0.0102693009  (  0.009919874447 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 770  ( 770 )   Summary  = 12757  ( 12759 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 770  ( 770 )   FreeWire = 36  ( 36 )   FreeEdge  = 232 ( 232 )   SharedEdge = 5543  ( 5545 )
+TOLERANCE   : MaxTol   =   0.9845041621  (   0.9845038147 )  AvgTol   =   0.00992720939  (  0.009919874447 )
 LABELS      : N0Labels = 880  ( 880 )  N1Labels = 0  ( 1770 )  N2Labels = 0  ( 0 )   TotalLabels = 880  ( 2650 )   NameLabels = 880  ( 1500 )   ColorLabels = 844  ( 2650 )   LayerLabels = 844  ( 2650 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 1  ( 1 )
index fd5c797b31d8a12a44ee77e81dcdc0278d9a5114..dd40ecbf3ba3361beebaf887f50da409c9b616fa 100644 (file)
@@ -8,9 +8,9 @@ set ref_data {
 DATA        : Faulties = 0  ( 26 )  Warnings = 0  ( 0 )  Summary  = 0  ( 26 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 0  ( 15 )  Summary  = 0  ( 15 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 106  ( 106 )   Summary  = 2214  ( 2199 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 106  ( 106 )   FreeWire = 0  ( 0 )   FreeEdge  = 272 ( 272 )   SharedEdge = 879  ( 864 )
-TOLERANCE   : MaxTol   =   0.2569678523  (   0.2569678511 )  AvgTol   =  0.002442269346  (  0.002442511333 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 106  ( 106 )   Summary  = 2199  ( 2199 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 106  ( 106 )   FreeWire = 0  ( 0 )   FreeEdge  = 272 ( 272 )   SharedEdge = 864  ( 864 )
+TOLERANCE   : MaxTol   =   0.2569678523  (   0.2569678511 )  AvgTol   =  0.002441727497  (  0.002442511333 )
 LABELS      : N0Labels = 378  ( 378 )  N1Labels = 0  ( 74 )  N2Labels = 0  ( 0 )   TotalLabels = 378  ( 452 )   NameLabels = 378  ( 378 )   ColorLabels = 374  ( 452 )   LayerLabels = 374  ( 452 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 2  ( 2 )
index 5934608fcf90bce18554155df6e463ba872726ea..4e1b0d1b6c222b1ccee227bb9df80c7a60fa5af4 100644 (file)
@@ -1,16 +1,16 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 
+
 set filename BUC50003.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 2  ( 0 )  Warnings = 21  ( 318 )  Summary  = 23  ( 318 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 19  ( 318 )  Summary  = 19  ( 318 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 135  ( 135 )   Summary  = 2223  ( 2223 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 135  ( 135 )   FreeWire = 0  ( 0 )   FreeEdge  = 3 ( 3 )   SharedEdge = 974  ( 974 )
-TOLERANCE   : MaxTol   =   0.9794163281  (    12.54323842 )  AvgTol   =    0.0206850688  (    0.1727055878 )
+TOLERANCE   : MaxTol   =   0.9794163281  (    12.54323842 )  AvgTol   =   0.02068503642  (    0.1727055878 )
 LABELS      : N0Labels = 1  ( 1 )  N1Labels = 138  ( 1011 )  N2Labels = 0  ( 0 )   TotalLabels = 139  ( 1012 )   NameLabels = 139  ( 205 )   ColorLabels = 138  ( 1011 )   LayerLabels = 138  ( 1011 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 4  ( 4 )
index 33b7a0411391990045e426e3a541795b53d74f89..11016ebec71894bf752d328a1c461469e5b0ec7a 100644 (file)
@@ -7,11 +7,11 @@ set filename BUC50030.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 16  ( 389 )  Summary  = 16  ( 389 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 19  ( 394 )  Summary  = 19  ( 394 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 771  ( 771 )   Summary  = 15496  ( 15404 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 771  ( 771 )   FreeWire = 0  ( 0 )   FreeEdge  = 1291 ( 1291 )   SharedEdge = 6375  ( 6303 )
-TOLERANCE   : MaxTol   =   0.9439922085  (    0.944086605 )  AvgTol   =  0.005964243436  (  0.005983396104 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 771  ( 771 )   Summary  = 15422  ( 15404 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 771  ( 771 )   FreeWire = 0  ( 0 )   FreeEdge  = 1291 ( 1291 )   SharedEdge = 6301  ( 6303 )
+TOLERANCE   : MaxTol   =   0.9439922085  (    0.944086605 )  AvgTol   =  0.005963915093  (  0.005983396104 )
 LABELS      : N0Labels = 2062  ( 2062 )  N1Labels = 6  ( 1153 )  N2Labels = 0  ( 0 )   TotalLabels = 2068  ( 3215 )   NameLabels = 2062  ( 2062 )   ColorLabels = 2037  ( 3215 )   LayerLabels = 2037  ( 3215 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 3  ( 4 )
index 7ae7b48a79b1443e164570e0f0707a887f2c99ca..7a8e1f2622e5a89afe2e0eb11e512b074da7e54b 100644 (file)
@@ -2,15 +2,16 @@
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 puts "TODO CR23096 ALL: LAYERS : Faulty" 
 
+
 set filename polyrepro_13juin.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 40  ( 181 )  Warnings = 130  ( 1155 )  Summary  = 170  ( 1336 )
+TPSTAT      : Faulties = 0  ( 181 )  Warnings = 123  ( 1156 )  Summary  = 123  ( 1337 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 527  ( 527 )   Summary  = 10206  ( 10203 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 527  ( 527 )   FreeWire = 57  ( 57 )   FreeEdge  = 1172 ( 1172 )   SharedEdge = 4011  ( 4009 )
-TOLERANCE   : MaxTol   =   0.5505691323  (   0.5505691341 )  AvgTol   =  0.008352658998  (  0.008366976213 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 527  ( 527 )   Summary  = 10204  ( 10203 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 527  ( 527 )   FreeWire = 57  ( 57 )   FreeEdge  = 1172 ( 1172 )   SharedEdge = 4009  ( 4009 )
+TOLERANCE   : MaxTol   =   0.5505691323  (   0.5505691341 )  AvgTol   =  0.008350628685  (  0.008366976269 )
 LABELS      : N0Labels = 8  ( 8 )  N1Labels = 1544  ( 3130 )  N2Labels = 0  ( 0 )   TotalLabels = 1552  ( 3138 )   NameLabels = 1552  ( 1918 )   ColorLabels = 1544  ( 3130 )   LayerLabels = 1544  ( 3128 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 10  ( 10 )
index fd70e2128ad80ac24ed23d60b41a3516c92be271..99291b1ad536b3c4b0efb8c333b3c4e28d395b51 100644 (file)
@@ -1,5 +1,4 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 puts "TODO CR23096 ALL: COLORS : Faulty" 
 
@@ -8,11 +7,11 @@ set filename BUC60625-1.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 1 )  Warnings = 0  ( 0 )  Summary  = 0  ( 1 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 10  ( 63 )  Summary  = 10  ( 63 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 4  ( 63 )  Summary  = 4  ( 63 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 120  ( 120 )   Summary  = 5877  ( 5876 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 120  ( 120 )   FreeWire = 31  ( 31 )   FreeEdge  = 1039 ( 1039 )   SharedEdge = 2361  ( 2356 )
-TOLERANCE   : MaxTol   =   0.8763127869  (         1e-005 )  AvgTol   =  0.002334758632  (  3.646635427e-006 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 120  ( 120 )   Summary  = 5878  ( 5876 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 120  ( 120 )   FreeWire = 31  ( 31 )   FreeEdge  = 1039 ( 1039 )   SharedEdge = 2358  ( 2356 )
+TOLERANCE   : MaxTol   = 1.421161348e-06  (          1e-05 )  AvgTol   =  1.219850877e-07  (  3.646635427e-06 )
 LABELS      : N0Labels = 1051  ( 1051 )  N1Labels = 0  ( 448 )  N2Labels = 0  ( 0 )   TotalLabels = 1051  ( 1499 )   NameLabels = 1051  ( 1051 )   ColorLabels = 822  ( 1300 )   LayerLabels = 971  ( 1499 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 2  ( 3 )
index b57cba7bde52c1c8f2438c4943dcb43b78a7e0c1..a9495b3939aaad6a0644f0d5b3759e8b6c483663 100644 (file)
@@ -8,7 +8,7 @@ set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 2  ( 9 )  Summary  = 2  ( 9 )
 CHECKSHAPE  : Wires    = 2  ( 3 )  Faces    = 2  ( 3 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1149  ( 1148 )   Summary  = 14674  ( 14673 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1149  ( 1148 )   Summary  = 14675  ( 14673 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1149  ( 1148 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 6198  ( 6198 )
 TOLERANCE   : MaxTol   =   0.9825787092  (   0.9825787092 )  AvgTol   =   0.04096923729  (   0.04100486587 )
 LABELS      : N0Labels = 1  ( 1 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 1  ( 1 )   NameLabels = 1  ( 1 )   ColorLabels = 0  ( 0 )   LayerLabels = 0  ( 0 )
index 709b8e25c8b9049bad03f4c3601351a7bc86764c..336aa10e4176339ea9d5b0478dc2a63418b2a026 100644 (file)
@@ -1,13 +1,13 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 
+
 set filename CTS17804.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 2  ( 0 )  Warnings = 36  ( 279 )  Summary  = 38  ( 279 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 40  ( 279 )  Summary  = 40  ( 279 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 218  ( 218 )   Summary  = 2957  ( 2963 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 218  ( 218 )   FreeWire = 0  ( 0 )   FreeEdge  = 12 ( 12 )   SharedEdge = 1254  ( 1260 )
index 052cb6676e3dd6d8d186d828f12d2b676fb55336..ef672bd6845f6d46d910d9d9fb12adae5054f744 100644 (file)
@@ -8,11 +8,11 @@ set filename t_cat_424_002_sgi_hybdrw_vw_tuer_standard.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 733 )  Warnings = 67  ( 4330 )  Summary  = 67  ( 5063 )
+TPSTAT      : Faulties = 0  ( 733 )  Warnings = 67  ( 4329 )  Summary  = 67  ( 5062 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2263  ( 2263 )   Summary  = 81571  ( 81625 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2263  ( 2263 )   Summary  = 81573  ( 81625 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2263  ( 2263 )   FreeWire = 2854  ( 2907 )   FreeEdge  = 19507 ( 19507 )   SharedEdge = 29769  ( 29768 )
-TOLERANCE   : MaxTol   =   0.7925892163  (   0.7925891552 )  AvgTol   =  0.001587415153  (  0.001633612857 )
+TOLERANCE   : MaxTol   =   0.7925892163  (   0.7925891552 )  AvgTol   =  0.001587411623  (  0.001633612857 )
 LABELS      : N0Labels = 28  ( 28 )  N1Labels = 13487  ( 17629 )  N2Labels = 0  ( 0 )   TotalLabels = 13515  ( 17657 )   NameLabels = 13515  ( 17494 )   ColorLabels = 13489  ( 17629 )   LayerLabels = 13438  ( 17573 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 18  ( 18 )
index 49ca52dcd636abf4c925cd72b875b850e6803522..10e5fc4875318e8f1a37caca1a78be6bfa06cb2a 100644 (file)
@@ -8,11 +8,11 @@ set filename CTS18548.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 106  ( 423 )  Summary  = 106  ( 423 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 56  ( 423 )  Summary  = 56  ( 423 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1892  ( 1892 )   Summary  = 20531  ( 20544 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1892  ( 1892 )   FreeWire = 54  ( 54 )   FreeEdge  = 266 ( 266 )   SharedEdge = 8304  ( 8300 )
-TOLERANCE   : MaxTol   =   0.5322014093  (   0.5322014093 )  AvgTol   =  0.002295580237  (  0.002300302351 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1892  ( 1892 )   Summary  = 20543  ( 20544 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1892  ( 1892 )   FreeWire = 54  ( 54 )   FreeEdge  = 266 ( 266 )   SharedEdge = 8300  ( 8300 )
+TOLERANCE   : MaxTol   =   0.5322014093  (   0.5322014093 )  AvgTol   =  0.002295480513  (  0.002300302351 )
 LABELS      : N0Labels = 7  ( 7 )  N1Labels = 1982  ( 2455 )  N2Labels = 0  ( 0 )   TotalLabels = 1989  ( 2462 )   NameLabels = 1989  ( 2062 )   ColorLabels = 1982  ( 2455 )   LayerLabels = 1982  ( 2455 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 3  ( 4 )
index f870c185abbe649e674fe1d9def11c207d200e5e..27a7e3ca5ac6b0b75dac5e39ca3a18faac2a3c7c 100644 (file)
@@ -7,11 +7,11 @@ set filename CTS18644.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 1 )  Summary  = 0  ( 1 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 3  ( 212 )  Summary  = 3  ( 212 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 2  ( 212 )  Summary  = 2  ( 212 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 4004  ( 4004 )   Summary  = 46706  ( 46701 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 4004  ( 4004 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 19352  ( 19350 )
-TOLERANCE   : MaxTol   =  0.01077402956  ( 0.005387073003 )  AvgTol   =  4.979200747e-006  (  9.076797721e-006 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 4004  ( 4004 )   Summary  = 46702  ( 46701 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 4004  ( 4004 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 19350  ( 19350 )
+TOLERANCE   : MaxTol   =  0.01077402956  ( 0.005387073003 )  AvgTol   =  4.979814372e-06  (  9.076797721e-06 )
 LABELS      : N0Labels = 4004  ( 4004 )  N1Labels = 0  ( 901 )  N2Labels = 0  ( 0 )   TotalLabels = 4004  ( 4905 )   NameLabels = 4004  ( 4004 )   ColorLabels = 248  ( 1149 )   LayerLabels = 3366  ( 4267 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 3  ( 3 )
index 86a6fd307e49c6222ae3e324598c20285eded42c..6c9e388e0eaa813c6d4832977e62886dd57a7b80 100644 (file)
@@ -10,11 +10,11 @@ set filename FRA62468-2.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 257  ( 4991 )  Summary  = 257  ( 4991 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 253  ( 4991 )  Summary  = 253  ( 4991 )
 CHECKSHAPE  : Wires    = 12  ( 17 )  Faces    = 12  ( 11 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 4729  ( 4729 )   Summary  = 63198  ( 63144 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 4729  ( 4729 )   FreeWire = 18  ( 18 )   FreeEdge  = 452 ( 452 )   SharedEdge = 26838  ( 26793 )
-TOLERANCE   : MaxTol   =   0.9804479161  (   0.9805459497 )  AvgTol   =    0.0115309439  (   0.01154870945 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 4729  ( 4729 )   Summary  = 63154  ( 63144 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 4729  ( 4729 )   FreeWire = 18  ( 18 )   FreeEdge  = 452 ( 452 )   SharedEdge = 26794  ( 26793 )
+TOLERANCE   : MaxTol   =   0.9804479161  (   0.9805459497 )  AvgTol   =   0.01153089029  (   0.01154870945 )
 LABELS      : N0Labels = 5089  ( 5165 )  N1Labels = 26  ( 3844 )  N2Labels = 0  ( 0 )   TotalLabels = 5115  ( 9009 )   NameLabels = 5089  ( 5165 )   ColorLabels = 5086  ( 8933 )   LayerLabels = 5086  ( 8933 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 3  ( 3 )
index fba64170dee90fbdbcad64a13991d6e584feec5b..cebe631951b1b5162fef9deb0ab63a1cdada9961 100644 (file)
@@ -1,5 +1,4 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 puts "TODO CR23096 ALL: COLORS : Faulty" 
@@ -9,11 +8,11 @@ set filename totale.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 1 )  Warnings = 0  ( 1 )  Summary  = 0  ( 2 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 851  ( 599 )  Summary  = 851  ( 599 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 357  ( 599 )  Summary  = 357  ( 599 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 926  ( 926 )   Summary  = 11271  ( 11272 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 926  ( 926 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 4710  ( 4710 )
-TOLERANCE   : MaxTol   =  0.09919926743  (  0.09919926743 )  AvgTol   =   0.00246656445  (  0.002468707531 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 926  ( 926 )   Summary  = 11269  ( 11272 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 926  ( 926 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 4708  ( 4710 )
+TOLERANCE   : MaxTol   =  0.09919926743  (  0.09919926743 )  AvgTol   =  0.002465923979  (  0.002468707531 )
 LABELS      : N0Labels = 926  ( 926 )  N1Labels = 0  ( 638 )  N2Labels = 0  ( 0 )   TotalLabels = 926  ( 1564 )   NameLabels = 926  ( 1035 )   ColorLabels = 926  ( 1564 )   LayerLabels = 19  ( 19 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 2  ( 4 )
index b29f467b6ec45e6274722a4c5dbfb488a1e4e517..a4a1d72bce8d80c4823e6fae3f203d4dc5d090df 100644 (file)
@@ -9,11 +9,11 @@ set filename PRO10626.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 2  ( 0 )  Warnings = 127  ( 295 )  Summary  = 129  ( 295 )
+TPSTAT      : Faulties = 2  ( 0 )  Warnings = 85  ( 295 )  Summary  = 87  ( 295 )
 CHECKSHAPE  : Wires    = 8  ( 13 )  Faces    = 8  ( 13 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 419  ( 419 )   Summary  = 5342  ( 5352 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 419  ( 419 )   FreeWire = 4  ( 4 )   FreeEdge  = 42 ( 42 )   SharedEdge = 2233  ( 2227 )
-TOLERANCE   : MaxTol   =    4.558918103  (    4.543567878 )  AvgTol   =   0.03221130666  (   0.03563725913 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 419  ( 419 )   Summary  = 5330  ( 5352 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 419  ( 419 )   FreeWire = 4  ( 4 )   FreeEdge  = 42 ( 42 )   SharedEdge = 2221  ( 2227 )
+TOLERANCE   : MaxTol   =    4.549041994  (    4.543567878 )  AvgTol   =   0.03220482613  (   0.03563725913 )
 LABELS      : N0Labels = 457  ( 457 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 457  ( 457 )   NameLabels = 457  ( 457 )   ColorLabels = 451  ( 455 )   LayerLabels = 453  ( 457 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 2  ( 2 )
index 6cfe5a0795d88e503b61ff534d8f17f558581158..8b7e453756fa00e5e3a48b8c8f83498e99415767 100644 (file)
@@ -9,8 +9,8 @@ set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 7  ( 190 )  Summary  = 7  ( 190 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 309  ( 309 )   Summary  = 14826  ( 14815 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 309  ( 309 )   FreeWire = 22  ( 22 )   FreeEdge  = 1789 ( 1789 )   SharedEdge = 6255  ( 6249 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 309  ( 309 )   Summary  = 14820  ( 14815 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 309  ( 309 )   FreeWire = 22  ( 22 )   FreeEdge  = 1789 ( 1789 )   SharedEdge = 6249  ( 6249 )
 TOLERANCE   : MaxTol   =     0.75178756  (   0.7517875657 )  AvgTol   =  0.001674556495  (  0.001679070069 )
 LABELS      : N0Labels = 2030  ( 2204 )  N1Labels = 8  ( 673 )  N2Labels = 0  ( 0 )   TotalLabels = 2038  ( 2877 )   NameLabels = 2030  ( 2204 )   ColorLabels = 2006  ( 2703 )   LayerLabels = 2006  ( 2703 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
index aaa0e452b742b3553b11dbc60837e4cc2bb73f91..4315afb5882fcefd6c630c3e52770539eb589afd 100644 (file)
@@ -9,9 +9,9 @@ set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 6  ( 2819 )  Summary  = 6  ( 2819 )
 CHECKSHAPE  : Wires    = 4  ( 6 )  Faces    = 4  ( 6 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 3785  ( 3785 )   Summary  = 69460  ( 69485 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 3785  ( 3785 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 30983  ( 30997 )
-TOLERANCE   : MaxTol   =  0.08172710091  (  0.05040240237 )  AvgTol   =  0.0006058646692  (  0.0006023709171 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 3785  ( 3785 )   Summary  = 69461  ( 69485 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 3785  ( 3785 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 30982  ( 30997 )
+TOLERANCE   : MaxTol   =  0.08172710091  (  0.05040240237 )  AvgTol   =  0.000605864669  (  0.0006023709171 )
 LABELS      : N0Labels = 3785  ( 3785 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 3785  ( 3785 )   NameLabels = 3785  ( 3785 )   ColorLabels = 3785  ( 3785 )   LayerLabels = 3785  ( 3785 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 6  ( 6 )
index 5b8dc304b9aa1497f4dc21c71e10d3dc6dc98a74..5aa496f344492ad97b679850909e1e8096cc98e8 100644 (file)
@@ -1,16 +1,16 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 
+
 set filename ball_bearing.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 4  ( 0 )  Warnings = 4  ( 5 )  Summary  = 8  ( 5 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 4  ( 5 )  Summary  = 4  ( 5 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 15  ( 15 )   Summary  = 320  ( 320 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 15  ( 15 )   FreeWire = 1  ( 1 )   FreeEdge  = 55 ( 55 )   SharedEdge = 117  ( 117 )
-TOLERANCE   : MaxTol   = 0.0006252987008  ( 0.0006252359927 )  AvgTol   =  1.958086667e-005  (  1.469671889e-005 )
+TOLERANCE   : MaxTol   = 0.0006252987008  ( 0.0006252359927 )  AvgTol   =   1.4699366e-05  (  1.469671889e-05 )
 LABELS      : N0Labels = 1  ( 1 )  N1Labels = 68  ( 137 )  N2Labels = 0  ( 0 )   TotalLabels = 69  ( 138 )   NameLabels = 69  ( 76 )   ColorLabels = 68  ( 137 )   LayerLabels = 0  ( 0 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 1  ( 1 )
index b01c8018b39238b7b105621d326a39cad36c04f4..2938b1865d3803007fc728578f07b438002874c2 100644 (file)
@@ -1,12 +1,12 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 
+
 set filename support_rampe.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 4  ( 2 )  Warnings = 5  ( 171 )  Summary  = 9  ( 173 )
+TPSTAT      : Faulties = 0  ( 2 )  Warnings = 5  ( 171 )  Summary  = 5  ( 173 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 169  ( 169 )   Summary  = 5348  ( 5348 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 169  ( 169 )   FreeWire = 49  ( 49 )   FreeEdge  = 945 ( 945 )   SharedEdge = 2041  ( 2041 )
index 83c70ffaa323787c9a1c7ecfbc8a37a71ebd3c01..962fd4981290e1c7b6ec140de45722f15926e6a7 100644 (file)
@@ -1,6 +1,5 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
 puts "TODO CR23096 ALL: TPSTAT : Faulty" 
-puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 
 
@@ -8,11 +7,11 @@ set filename UKI60107-5.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 2  ( 0 )  Warnings = 92  ( 134 )  Summary  = 94  ( 134 )
+TPSTAT      : Faulties = 2  ( 0 )  Warnings = 64  ( 134 )  Summary  = 66  ( 134 )
 CHECKSHAPE  : Wires    = 1  ( 1 )  Faces    = 1  ( 1 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 93  ( 93 )   Summary  = 16844  ( 16847 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 93  ( 93 )   Summary  = 16847  ( 16847 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 93  ( 93 )   FreeWire = 2  ( 2 )   FreeEdge  = 419 ( 419 )   SharedEdge = 8137  ( 8137 )
-TOLERANCE   : MaxTol   =         1e-005  (         1e-005 )  AvgTol   =  2.828136848e-007  (  9.344523316e-006 )
+TOLERANCE   : MaxTol   = 7.725102137e-06  (          1e-05 )  AvgTol   =  2.262722986e-07  (  9.344523316e-06 )
 LABELS      : N0Labels = 513  ( 513 )  N1Labels = 0  ( 15 )  N2Labels = 0  ( 0 )   TotalLabels = 513  ( 528 )   NameLabels = 513  ( 513 )   ColorLabels = 402  ( 422 )   LayerLabels = 508  ( 528 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 5  ( 5 )
index 4f84c118135f217b09fd64d5f61fb59a0293a729..4abfc5305b3e185664a526976b682fbdc17a6bb8 100644 (file)
@@ -1,7 +1,9 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
 puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
-puts "TODO CR23096 Mandriva2010: Error : 1 differences with reference data found :"
+
+
+puts "TODO CR23096 Mandriva2010: Error : 1 differences with reference data found :" 
 
 set LinuxDiff 1
 set filename ims010.igs
@@ -10,9 +12,9 @@ set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 6  ( 523 )  Summary  = 6  ( 523 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1177  ( 1177 )   Summary  = 18257  ( 18230 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1177  ( 1177 )   FreeWire = 5  ( 5 )   FreeEdge  = 714 ( 714 )   SharedEdge = 7639  ( 7614 )
-TOLERANCE   : MaxTol   =   0.9436610236  (   0.8261873283 )  AvgTol   =   0.01109227227  (    0.0107628002 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1177  ( 1177 )   Summary  = 18232  ( 18230 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1177  ( 1177 )   FreeWire = 5  ( 5 )   FreeEdge  = 714 ( 714 )   SharedEdge = 7614  ( 7614 )
+TOLERANCE   : MaxTol   =   0.9436610236  (   0.8261873283 )  AvgTol   =   0.01104814106  (   0.01076280021 )
 LABELS      : N0Labels = 1884  ( 1885 )  N1Labels = 0  ( 1020 )  N2Labels = 0  ( 0 )   TotalLabels = 1884  ( 2905 )   NameLabels = 1884  ( 1885 )   ColorLabels = 1873  ( 2904 )   LayerLabels = 1873  ( 2904 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 7  ( 7 )
index 950a44e730e4c5abebc7961f8c6da4196fd272d6..a166708fc8d4b638015bb6b5f8406f440e860c64 100644 (file)
@@ -1,18 +1,18 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 puts "TODO CR23096 ALL: LAYERS : Faulty" 
 
+
 set filename BUC50029.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 44  ( 0 )  Warnings = 215  ( 1313 )  Summary  = 259  ( 1313 )
-CHECKSHAPE  : Wires    = 1  ( 1 )  Faces    = 2  ( 2 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 213  ( 1313 )  Summary  = 213  ( 1313 )
+CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 1  ( 1 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 270  ( 270 )   Summary  = 8171  ( 8283 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 270  ( 270 )   FreeWire = 108  ( 108 )   FreeEdge  = 606 ( 606 )   SharedEdge = 3685  ( 3689 )
-TOLERANCE   : MaxTol   = 5.750743843e+014  ( 4.784430882e+015 )  AvgTol   =  2.722724827e+011  (  2.206755414e+012 )
+TOLERANCE   : MaxTol   = 5.750743843e+14  ( 4.784430882e+15 )  AvgTol   =  2.722724827e+11  (  2.206755414e+12 )
 LABELS      : N0Labels = 7  ( 7 )  N1Labels = 450  ( 2042 )  N2Labels = 0  ( 0 )   TotalLabels = 457  ( 2049 )   NameLabels = 457  ( 698 )   ColorLabels = 450  ( 2043 )   LayerLabels = 449  ( 2042 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 7  ( 7 )
index 02883ceeedafffe803014c92e6e3e7c2567f431e..2c0bfce3289924b3a2d6dfd510ac826ecb8e196c 100644 (file)
@@ -1,18 +1,18 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
-puts "TODO CR23096 ALL: COLORS : Faulty"
+puts "TODO CR23096 ALL: COLORS : Faulty" 
+
 
 set filename CTS17802.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 10  ( 1 )  Warnings = 35  ( 142 )  Summary  = 45  ( 143 )
+TPSTAT      : Faulties = 0  ( 1 )  Warnings = 37  ( 142 )  Summary  = 37  ( 143 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 107  ( 107 )   Summary  = 2280  ( 2286 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 107  ( 107 )   FreeWire = 9  ( 9 )   FreeEdge  = 282 ( 282 )   SharedEdge = 902  ( 908 )
-TOLERANCE   : MaxTol   =  0.07760384877  (  0.07760384877 )  AvgTol   =  0.001993378925  (  0.002045377633 )
+TOLERANCE   : MaxTol   =  0.07760384877  (  0.07760384877 )  AvgTol   =  0.001993343793  (  0.002045377633 )
 LABELS      : N0Labels = 19  ( 19 )  N1Labels = 347  ( 612 )  N2Labels = 0  ( 0 )   TotalLabels = 366  ( 631 )   NameLabels = 366  ( 433 )   ColorLabels = 357  ( 629 )   LayerLabels = 357  ( 629 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 5  ( 6 )
index b76fa46236449f85045582d9e9d7144694f01a2f..abf09d571f30d6e10df097602405068ca152e4b9 100644 (file)
@@ -8,11 +8,11 @@ set filename PRO7978.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 1 )  Summary  = 0  ( 1 )
-TPSTAT      : Faulties = 2  ( 0 )  Warnings = 266  ( 933 )  Summary  = 268  ( 933 )
+TPSTAT      : Faulties = 2  ( 0 )  Warnings = 165  ( 940 )  Summary  = 167  ( 940 )
 CHECKSHAPE  : Wires    = 8  ( 8 )  Faces    = 5  ( 5 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 346  ( 346 )   Summary  = 25260  ( 25254 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 346  ( 346 )   FreeWire = 84  ( 84 )   FreeEdge  = 1563 ( 1563 )   SharedEdge = 12105  ( 12103 )
-TOLERANCE   : MaxTol   =   0.4314224119  (   0.2157335194 )  AvgTol   =  0.001277759529  (  0.001254878337 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 346  ( 346 )   Summary  = 25259  ( 25254 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 346  ( 346 )   FreeWire = 84  ( 84 )   FreeEdge  = 1563 ( 1563 )   SharedEdge = 12104  ( 12103 )
+TOLERANCE   : MaxTol   =   0.4314224119  (   0.2157335194 )  AvgTol   =  0.001277614216  (  0.001254878337 )
 LABELS      : N0Labels = 560  ( 560 )  N1Labels = 94  ( 90 )  N2Labels = 0  ( 0 )   TotalLabels = 654  ( 650 )   NameLabels = 648  ( 650 )   ColorLabels = 554  ( 640 )   LayerLabels = 554  ( 640 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 3  ( 3 )
index 3553ccfe067fa4c34fa408dd33fa0b2bb8469c6c..2d2327e5c09b3efc97d45e23e58d69aa208f886f 100644 (file)
@@ -1,6 +1,4 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
-puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 puts "TODO CR23096 ALL: COLORS : Faulty" 
 
@@ -9,11 +7,11 @@ set filename matrice.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 176  ( 135 )  Summary  = 176  ( 135 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 58  ( 135 )  Summary  = 58  ( 135 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 783  ( 783 )   Summary  = 7819  ( 7819 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 783  ( 783 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 3132  ( 3132 )
-TOLERANCE   : MaxTol   =         1e-005  (         1e-007 )  AvgTol   =  6.659922931e-007  (          1e-007 )
+TOLERANCE   : MaxTol   =          1e-07  (          1e-07 )  AvgTol   =           1e-07  (           1e-07 )
 LABELS      : N0Labels = 784  ( 784 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 784  ( 784 )   NameLabels = 784  ( 784 )   ColorLabels = 783  ( 784 )   LayerLabels = 783  ( 784 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 1  ( 2 )
index 7e1dd856d16f361f5818ef5622a05e779209ca8b..d44f02d4002705eead81cdc1eadfa139fab12a10 100644 (file)
@@ -1,5 +1,4 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 puts "TODO CR23096 ALL: LAYERS : Faulty" 
 
@@ -8,11 +7,11 @@ set filename PRO11713.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 99  ( 8228 )  Summary  = 99  ( 8228 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 33  ( 8228 )  Summary  = 33  ( 8228 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 127  ( 127 )   Summary  = 238094  ( 238094 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 127  ( 127 )   FreeWire = 8189  ( 8189 )   FreeEdge  = 93645 ( 93645 )   SharedEdge = 94153  ( 94153 )
-TOLERANCE   : MaxTol   =         1e-005  ( 1.000100071e-007 )  AvgTol   =  1.115159157e-007  (  1.000000046e-007 )
+TOLERANCE   : MaxTol   = 1.000100036e-07  ( 1.000100071e-07 )  AvgTol   =  1.000000246e-07  (  1.000000046e-07 )
 LABELS      : N0Labels = 42695  ( 42695 )  N1Labels = 0  ( 0 )  N2Labels = 0  ( 0 )   TotalLabels = 42695  ( 42695 )   NameLabels = 42695  ( 42695 )   ColorLabels = 0  ( 0 )   LayerLabels = 33059  ( 42695 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 0  ( 0 )
index 96121418e451d460610d76d9d096c467d806acc8..5945046d1eb70a621d662af9ad37586735c52332 100644 (file)
@@ -8,11 +8,11 @@ set filename PRO5236.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 1  ( 2 )  Warnings = 116  ( 1590 )  Summary  = 117  ( 1592 )
-CHECKSHAPE  : Wires    = 143  ( 48 )  Faces    = 160  ( 142 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 253  ( 253 )   Summary  = 6137  ( 5360 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 253  ( 253 )   FreeWire = 7  ( 10 )   FreeEdge  = 78 ( 78 )   SharedEdge = 2403  ( 2405 )
-TOLERANCE   : MaxTol   =  0.03236463118  (    43.42228938 )  AvgTol   =  0.0002037472482  (   0.04107558874 )
+TPSTAT      : Faulties = 0  ( 2 )  Warnings = 114  ( 1590 )  Summary  = 114  ( 1592 )
+CHECKSHAPE  : Wires    = 138  ( 48 )  Faces    = 155  ( 142 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 253  ( 253 )   Summary  = 6121  ( 5360 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 253  ( 253 )   FreeWire = 7  ( 10 )   FreeEdge  = 78 ( 78 )   SharedEdge = 2405  ( 2405 )
+TOLERANCE   : MaxTol   =  0.03236463118  (    43.42228938 )  AvgTol   =  0.0002035797479  (   0.04107558874 )
 LABELS      : N0Labels = 8  ( 8 )  N1Labels = 269  ( 2762 )  N2Labels = 0  ( 0 )   TotalLabels = 277  ( 2770 )   NameLabels = 277  ( 476 )   ColorLabels = 272  ( 2768 )   LayerLabels = 272  ( 2768 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 3  ( 4 )
index 54c556a6807bbe3fe2042917076a6620fee7d6eb..3000b1816da5b08272454103f437dcc30a85c59a 100644 (file)
@@ -1,16 +1,16 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 
+
 set filename sabena.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 28  ( 16 )  Warnings = 72  ( 2978 )  Summary  = 100  ( 2994 )
+TPSTAT      : Faulties = 0  ( 16 )  Warnings = 72  ( 2978 )  Summary  = 72  ( 2994 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2639  ( 2634 )   Summary  = 64362  ( 64317 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 2639  ( 2639 )   FreeWire = 1027  ( 1027 )   FreeEdge  = 10489 ( 10489 )   SharedEdge = 24209  ( 24190 )
-TOLERANCE   : MaxTol   =  0.05705560511  (  0.05705560511 )  AvgTol   =  0.0002567442361  (  0.0002554786816 )
+TOLERANCE   : MaxTol   =  0.05705560511  (  0.05705560511 )  AvgTol   =  0.0002567442363  (  0.0002554786816 )
 LABELS      : N0Labels = 54  ( 54 )  N1Labels = 10590  ( 27120 )  N2Labels = 0  ( 0 )   TotalLabels = 10644  ( 27174 )   NameLabels = 10644  ( 13414 )   ColorLabels = 10590  ( 27172 )   LayerLabels = 7  ( 18 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 8  ( 8 )
index 873a1b72f34e68c993ecd62dcf057fc3de38d376..38835a177f433fc45778ac575044e44f981108ad 100644 (file)
@@ -1,16 +1,17 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
-puts "TODO CR23096 ALL: COLORS : Faulty"
-puts "TODO CR23096 Mandriva2010: Error : 1 differences with reference data found :"
+puts "TODO CR23096 ALL: COLORS : Faulty" 
+
+
+puts "TODO CR23096 Mandriva2010: Error : 1 differences with reference data found :" 
 
 set LinuxDiff 1
 set filename UKI60107-3.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 2  ( 0 )  Warnings = 22  ( 332 )  Summary  = 24  ( 332 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 22  ( 332 )  Summary  = 22  ( 332 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 149  ( 149 )   Summary  = 2607  ( 2609 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 149  ( 149 )   FreeWire = 14  ( 14 )   FreeEdge  = 63 ( 63 )   SharedEdge = 1138  ( 1140 )
index f78db1ed8c85e62997d4c59e16b1e19247704bdc..466d1469170a92812f668e5b04cd77464736e8cf 100644 (file)
@@ -1,5 +1,4 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 puts "TODO CR23096 ALL: COLORS : Faulty" 
 
@@ -8,11 +7,11 @@ set filename UKI60302.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 93 )  Warnings = 14  ( 129 )  Summary  = 14  ( 222 )
+TPSTAT      : Faulties = 0  ( 93 )  Warnings = 4  ( 129 )  Summary  = 4  ( 222 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 4  ( 4 )   Summary  = 438  ( 236 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 4  ( 4 )   FreeWire = 7  ( 7 )   FreeEdge  = 135 ( 135 )   SharedEdge = 151  ( 84 )
-TOLERANCE   : MaxTol   =         1e-005  ( 1.000100002e-007 )  AvgTol   =  9.941935484e-007  (  1.00000086e-007 )
+TOLERANCE   : MaxTol   =          1e-07  ( 1.000100002e-07 )  AvgTol   =           1e-07  (  1.00000086e-07 )
 LABELS      : N0Labels = 5  ( 5 )  N1Labels = 23  ( 33 )  N2Labels = 0  ( 0 )   TotalLabels = 28  ( 38 )   NameLabels = 28  ( 38 )   ColorLabels = 23  ( 33 )   LayerLabels = 23  ( 33 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 4  ( 5 )
index bb35d5c2bc83c29f48291993daf6efea8db51422..00236e7e561f18392e830ef798dab8c865985741 100644 (file)
@@ -1,19 +1,19 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 puts "TODO CR23096 ALL: COLORS : Faulty" 
-puts "TODO CR23096 ALL: LAYERS : Faulty"
+puts "TODO CR23096 ALL: LAYERS : Faulty" 
+
 
 set filename BUC60000.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 24  ( 0 )  Warnings = 50  ( 570 )  Summary  = 74  ( 570 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 48  ( 570 )  Summary  = 48  ( 570 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 186  ( 186 )   Summary  = 9601  ( 9691 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 186  ( 186 )   FreeWire = 200  ( 290 )   FreeEdge  = 2010 ( 2010 )   SharedEdge = 4167  ( 4167 )
-TOLERANCE   : MaxTol   =   0.5957823778  (   0.5957823778 )  AvgTol   =  0.002462717409  (  0.002802777852 )
+TOLERANCE   : MaxTol   =   0.5957823778  (   0.5957823778 )  AvgTol   =  0.002462709632  (  0.002802777852 )
 LABELS      : N0Labels = 2  ( 2 )  N1Labels = 657  ( 1428 )  N2Labels = 0  ( 0 )   TotalLabels = 659  ( 1430 )   NameLabels = 659  ( 1008 )   ColorLabels = 657  ( 1428 )   LayerLabels = 440  ( 1106 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 9  ( 10 )
index 834d2cf084fd10e198c85c1cac40dee7d7c8041d..6b6a3c5fa22de795b31e719b8538187ef0b519fd 100644 (file)
@@ -10,12 +10,12 @@ set filename BUC60215.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 202 )  Warnings = 18  ( 482 )  Summary  = 18  ( 684 )
+TPSTAT      : Faulties = 0  ( 201 )  Warnings = 18  ( 481 )  Summary  = 18  ( 682 )
 CHECKSHAPE  : Wires    = 1  ( 0 )  Faces    = 1  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 117  ( 117 )   Summary  = 9966  ( 9999 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 117  ( 117 )   FreeWire = 60  ( 93 )   FreeEdge  = 2720 ( 2720 )   SharedEdge = 3519  ( 3519 )
-TOLERANCE   : MaxTol   =   0.7859817704  (   0.7859817704 )  AvgTol   =  0.006349675603  (  0.006714127806 )
-LABELS      : N0Labels = 2  ( 2 )  N1Labels = 2639  ( 3328 )  N2Labels = 0  ( 0 )   TotalLabels = 2641  ( 3330 )   NameLabels = 2641  ( 2851 )   ColorLabels = 2639  ( 3328 )   LayerLabels = 2607  ( 3291 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 117  ( 117 )   Summary  = 9970  ( 10003 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 117  ( 117 )   FreeWire = 60  ( 93 )   FreeEdge  = 2720 ( 2720 )   SharedEdge = 3521  ( 3521 )
+TOLERANCE   : MaxTol   =   0.7859817704  (   0.7859817704 )  AvgTol   =  0.006159730821  (  0.006523979249 )
+LABELS      : N0Labels = 2  ( 2 )  N1Labels = 2639  ( 3327 )  N2Labels = 0  ( 0 )   TotalLabels = 2641  ( 3329 )   NameLabels = 2641  ( 2850 )   ColorLabels = 2639  ( 3327 )   LayerLabels = 2607  ( 3290 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 7  ( 9 )
 COLORS      : Colors   = CYAN1 DARKOLIVEGREEN2 GRAY67 LIGHTSKYBLUE1 MAGENTA3 MEDIUMPURPLE1 TAN1  ( CYAN1 DARKOLIVEGREEN2 GRAY67 HONEYDEW LIGHTSKYBLUE1 MAGENTA3 MEDIUMPURPLE1 PALETURQUOISE1 TAN1 )
index 915d6199d3041d47ddac4cf6ac0f56b0052b4d90..9f67cb94ef14b4ae08add5354fd4f4a825f6d609 100644 (file)
@@ -9,11 +9,11 @@ set filename Hutablage.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 954  ( 3435 )  Summary  = 954  ( 3435 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 512  ( 3435 )  Summary  = 512  ( 3435 )
 CHECKSHAPE  : Wires    = 0  ( 2 )  Faces    = 1  ( 2 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 636  ( 628 )   Summary  = 25749  ( 25764 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 636  ( 628 )   Summary  = 25751  ( 25764 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 636  ( 628 )   FreeWire = 51  ( 87 )   FreeEdge  = 297 ( 297 )   SharedEdge = 12156  ( 12155 )
-TOLERANCE   : MaxTol   =   0.9940193324  (   0.9940193324 )  AvgTol   =   0.01618946634  (   0.01618253099 )
+TOLERANCE   : MaxTol   =   0.9940193324  (   0.9940193324 )  AvgTol   =   0.01618901793  (   0.01618253099 )
 LABELS      : N0Labels = 1  ( 1 )  N1Labels = 711  ( 11812 )  N2Labels = 0  ( 0 )   TotalLabels = 712  ( 11813 )   NameLabels = 708  ( 765 )   ColorLabels = 711  ( 11812 )   LayerLabels = 0  ( 0 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 3  ( 5 )
index 74609b6355a1889ab21f227dc3fbd59fb497e3b9..0bc123d6e47e4607802af4094dca82c1485e06dd 100644 (file)
@@ -1,17 +1,18 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 puts "TODO CR23096 ALL: COLORS : Faulty" 
 puts "TODO CR23096 ALL: LAYERS : Faulty" 
-puts "TODO ?CR23096 ALL: Error : 1 differences with reference data found :"
+
+
+puts "TODO CR23096 Mandriva2010: Error : 1 differences with reference data found :" 
 
 set LinuxDiff 1
 set filename UKI60107-6.igs
 
 set ref_data {
-DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 2  ( 0 )  Warnings = 18  ( 317 )  Summary  = 20  ( 317 )
+DATA        : Faulties = 0  ( 477 )  Warnings = 0  ( 0 )  Summary  = 0  ( 477 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 18  ( 317 )  Summary  = 18  ( 317 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 79  ( 79 )   Summary  = 3800  ( 3951 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 79  ( 79 )   FreeWire = 79  ( 230 )   FreeEdge  = 865 ( 865 )   SharedEdge = 1481  ( 1481 )
index 4fe879fddcb585ae3453af4b81308ffc928920a0..f8dd48375d2190e524346333cb9927c95d77d2bd 100644 (file)
@@ -10,11 +10,11 @@ set filename BUC40132.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 12  ( 238 )  Warnings = 714  ( 2532 )  Summary  = 726  ( 2770 )
+TPSTAT      : Faulties = 0  ( 238 )  Warnings = 484  ( 2532 )  Summary  = 484  ( 2770 )
 CHECKSHAPE  : Wires    = 3  ( 3 )  Faces    = 3  ( 3 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1346  ( 1345 )   Summary  = 22214  ( 22292 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1346  ( 1345 )   Summary  = 22215  ( 22292 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 1346  ( 1345 )   FreeWire = 96  ( 170 )   FreeEdge  = 1061 ( 1061 )   SharedEdge = 9271  ( 9277 )
-TOLERANCE   : MaxTol   =   0.8099726869  (    1.367966665 )  AvgTol   =  0.008005065901  (   0.00836844767 )
+TOLERANCE   : MaxTol   =   0.8099726869  (    1.367966665 )  AvgTol   =  0.008004679127  (   0.00836844767 )
 LABELS      : N0Labels = 27  ( 27 )  N1Labels = 2100  ( 6101 )  N2Labels = 0  ( 0 )   TotalLabels = 2127  ( 6128 )   NameLabels = 2127  ( 2596 )   ColorLabels = 2114  ( 6127 )   LayerLabels = 2114  ( 6127 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 11  ( 12 )
index 814a333e7f0badd55318fa8c87dab8bb28ee6234..64c51abe6fe0513a996e99f2e833beccdcc77f3f 100644 (file)
@@ -1,10 +1,12 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
-puts "TODO ?CR23096 ALL: STATSHAPE : Faulty" 
-puts "TODO ?CR23096 ALL: TOLERANCE : Faulty" 
+puts "TODO CR23096 ALL: STATSHAPE : Faulty" 
+puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
-puts "TODO ?CR23096 ALL: Error : 5 differences with reference data found :"
-puts "TODO ?CR23096 ALL: CHECKSHAPE : Faulty"
+
+
+puts "TODO CR23096 Mandriva2010: CHECKSHAPE : Faulty " 
+
+puts "TODO CR23096 Mandriva2010: Error : 5 differences with reference data found :" 
 
 set LinuxDiff 5
 set LinuxFaulties {CHECKSHAPE}
@@ -12,12 +14,12 @@ set filename USA60022.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 1 )  Summary  = 0  ( 1 )
-TPSTAT      : Faulties = 21  ( 0 )  Warnings = 167  ( 1988 )  Summary  = 188  ( 1988 )
-CHECKSHAPE  : Wires    = 8  ( 13 )  Faces    = 9  ( 15 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 658  ( 634 )   Summary  = 25063  ( 24992 )
-STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 658  ( 634 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 11916  ( 11871 )
-TOLERANCE   : MaxTol   =      6.4081268  (    1.331845935 )  AvgTol   =  0.001845464281  (  0.002198928582 )
-LABELS      : N0Labels = 1  ( 1 )  N1Labels = 627  ( 634 )  N2Labels = 0  ( 0 )   TotalLabels = 628  ( 635 )   NameLabels = 628  ( 635 )   ColorLabels = 627  ( 635 )   LayerLabels = 627  ( 635 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 155  ( 2001 )  Summary  = 155  ( 2001 )
+CHECKSHAPE  : Wires    = 7  ( 13 )  Faces    = 8  ( 15 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 665  ( 634 )   Summary  = 25075  ( 24992 )
+STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 665  ( 634 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 11900  ( 11871 )
+TOLERANCE   : MaxTol   =      6.4081268  (    1.331845935 )  AvgTol   =   0.00219409015  (  0.002198928582 )
+LABELS      : N0Labels = 1  ( 1 )  N1Labels = 634  ( 634 )  N2Labels = 0  ( 0 )   TotalLabels = 635  ( 635 )   NameLabels = 635  ( 635 )   ColorLabels = 634  ( 635 )   LayerLabels = 634  ( 635 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 2  ( 2 )
 COLORS      : Colors   = GREEN RED  ( GREEN RED )
index 468e2832c1b146c84f0ab539d5901685d59e25b9..8d7cfa92c9f0ffd38212bb6758c98cef01a06bc0 100644 (file)
@@ -1,18 +1,18 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 puts "TODO CR23096 ALL: COLORS : Faulty" 
 puts "TODO CR23096 ALL: LAYERS : Faulty" 
 
+
 set filename catia01_s.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 16  ( 3 )  Warnings = 118  ( 313 )  Summary  = 134  ( 316 )
+TPSTAT      : Faulties = 0  ( 3 )  Warnings = 62  ( 313 )  Summary  = 62  ( 316 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
 NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 145  ( 145 )   Summary  = 3869  ( 3869 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 145  ( 145 )   FreeWire = 64  ( 64 )   FreeEdge  = 617 ( 617 )   SharedEdge = 1627  ( 1627 )
-TOLERANCE   : MaxTol   =   0.0521262172  (   0.0521264751 )  AvgTol   =  0.0004299527196  (  0.0004227153137 )
+TOLERANCE   : MaxTol   =   0.0521262172  (   0.0521264751 )  AvgTol   =  0.0004294496734  (   0.00042271571 )
 LABELS      : N0Labels = 2  ( 2 )  N1Labels = 346  ( 756 )  N2Labels = 0  ( 0 )   TotalLabels = 348  ( 758 )   NameLabels = 348  ( 478 )   ColorLabels = 347  ( 757 )   LayerLabels = 336  ( 744 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 2  ( 3 )
index 53440b12958048c1a68a992b4b24c52a292ab05c..2dc6e9400d557a33c3ab2598ffefca733419b158 100644 (file)
@@ -1,6 +1,4 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO CR23096 ALL: NBSHAPES : Faulty" 
-puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
 puts "TODO CR23096 ALL: LABELS : Faulty" 
 
 
@@ -8,11 +6,11 @@ set filename t_cat_424_002_sgi_hybdrw_vw_dosenhalter_standard.igs
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 569 )  Warnings = 211  ( 8396 )  Summary  = 211  ( 8965 )
+TPSTAT      : Faulties = 0  ( 569 )  Warnings = 103  ( 8440 )  Summary  = 103  ( 9009 )
 CHECKSHAPE  : Wires    = 0  ( 0 )  Faces    = 0  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 9171  ( 9171 )   Summary  = 288453  ( 288510 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 9171  ( 9171 )   Summary  = 288559  ( 288510 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 9171  ( 9171 )   FreeWire = 998  ( 1096 )   FreeEdge  = 28215 ( 28215 )   SharedEdge = 122324  ( 122275 )
-TOLERANCE   : MaxTol   =   0.6990645152  (   0.6305328468 )  AvgTol   =  0.0005441107262  (  0.0003780896454 )
+TOLERANCE   : MaxTol   =   0.6305328468  (   0.6305328468 )  AvgTol   =  0.0003777026264  (  0.0003780896454 )
 LABELS      : N0Labels = 1  ( 1 )  N1Labels = 31624  ( 37142 )  N2Labels = 0  ( 0 )   TotalLabels = 31625  ( 37143 )   NameLabels = 31621  ( 36777 )   ColorLabels = 31624  ( 37142 )   LayerLabels = 29174  ( 34054 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 4  ( 4 )
index b5213138fe8b14d6fad1ab2744b90d05607d3027..d0bd0f4bca97b4aa4ab011f4ab37f53d36f36bac 100644 (file)
@@ -9,9 +9,9 @@ set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 1 )  Summary  = 0  ( 1 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 12  ( 1168 )  Summary  = 12  ( 1168 )
 CHECKSHAPE  : Wires    = 16  ( 16 )  Faces    = 24  ( 24 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 224  ( 224 )   Summary  = 73669  ( 73661 )
+NBSHAPES    : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 224  ( 224 )   Summary  = 73673  ( 73661 )
 STATSHAPE   : Solid    = 0  ( 0 )  Shell    = 0  ( 0 )  Face     = 224  ( 224 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 36616  ( 36608 )
-TOLERANCE   : MaxTol   =   0.3297745494  (   0.0412874456 )  AvgTol   =  8.510530279e-005  (  3.712938892e-005 )
+TOLERANCE   : MaxTol   =   0.3297745494  (   0.0412874456 )  AvgTol   =  8.510529471e-05  (  3.712938892e-05 )
 LABELS      : N0Labels = 224  ( 224 )  N1Labels = 0  ( 21432 )  N2Labels = 0  ( 0 )   TotalLabels = 224  ( 21656 )   NameLabels = 224  ( 224 )   ColorLabels = 224  ( 21656 )   LayerLabels = 0  ( 0 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 1  ( 1 )
index ffe58242654b8cee3d3fcfe2ee485c26724da131..429937a74a6521060cb7e47e5c530233a086923e 100644 (file)
@@ -1,19 +1,20 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
 puts "TODO CR23096 ALL: TPSTAT : Faulty" 
 puts "TODO CR23096 ALL: CHECKSHAPE : Faulty" 
-puts "TODO CR23096 Mandriva2010: Error : 2 differences with reference data found :"
 
-set LinuxDiff 2
 
+puts "TODO CR23096 Mandriva2010: Error : 2 differences with reference data found :" 
+
+set LinuxDiff 2
 set filename bm1_sy_exhaust.stp
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
 TPSTAT      : Faulties = 0  ( 0 )  Warnings = 21  ( 12 )  Summary  = 21  ( 12 )
-CHECKSHAPE  : Wires    = 4  ( 0 )  Faces    = 3  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 3  ( 4 )  Shell    = 4  ( 4 )  Face     = 35  ( 35 )   Summary  = 293  ( 266 )
+CHECKSHAPE  : Wires    = 2  ( 0 )  Faces    = 2  ( 0 )  Shells   = 0  ( 0 )   Solids   = 0 ( 0 )
+NBSHAPES    : Solid    = 3  ( 4 )  Shell    = 4  ( 4 )  Face     = 35  ( 35 )   Summary  = 292  ( 266 )
 STATSHAPE   : Solid    = 3  ( 4 )  Shell    = 4  ( 4 )  Face     = 35  ( 35 )   FreeWire = 0  ( 0 )   FreeEdge  = 24 ( 24 )   SharedEdge = 105  ( 103 )
-TOLERANCE   : MaxTol   = 6.104502198e-006  (         1e-005 )  AvgTol   =  9.526607749e-007  (  2.904829547e-006 )
+TOLERANCE   : MaxTol   = 6.104502198e-06  (          1e-05 )  AvgTol   =  9.694977451e-07  (  2.91037487e-06 )
 LABELS      : N0Labels = 4  ( 4 )  N1Labels = 31  ( 31 )  N2Labels = 0  ( 0 )   TotalLabels = 35  ( 35 )   NameLabels = 7  ( 7 )   ColorLabels = 0  ( 0 )   LayerLabels = 28  ( 28 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 0  ( 0 )
index 1e8ab8459e94e6a91b30c0d84b2021843bfe9089..9312025e1d9504d2114a68cf9fddf6879887edfc 100644 (file)
@@ -1,5 +1,6 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
 puts "TODO CR23096 ALL: TPSTAT : Faulty" 
+puts "TODO CR23096 ALL: CHECKSHAPE : Faulty" 
 puts "TODO CR23096 ALL: STATSHAPE : Faulty" 
 puts "TODO CR23096 ALL: TOLERANCE : Faulty" 
 
@@ -11,11 +12,11 @@ set filename Z8M6SAT.stp
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 3  ( 0 )  Warnings = 977  ( 3138 )  Summary  = 980  ( 3138 )
-CHECKSHAPE  : Wires    = 77  ( 77 )  Faces    = 61  ( 63 )  Shells   = 0  ( 7 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 28  ( 28 )  Shell    = 778  ( 38 )  Face     = 3253  ( 3249 )   Summary  = 29550  ( 28726 )
-STATSHAPE   : Solid    = 28  ( 28 )  Shell    = 778  ( 38 )  Face     = 3253  ( 3249 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 12674  ( 12610 )
-TOLERANCE   : MaxTol   =    40.73070494  (    20.46526799 )  AvgTol   =   0.03573677223  (   0.03196812549 )
+TPSTAT      : Faulties = 3  ( 0 )  Warnings = 961  ( 3138 )  Summary  = 964  ( 3138 )
+CHECKSHAPE  : Wires    = 51  ( 48 )  Faces    = 45  ( 47 )  Shells   = 0  ( 5 )   Solids   = 0 ( 0 )
+NBSHAPES    : Solid    = 28  ( 28 )  Shell    = 773  ( 38 )  Face     = 3248  ( 3247 )   Summary  = 29520  ( 28710 )
+STATSHAPE   : Solid    = 28  ( 28 )  Shell    = 773  ( 38 )  Face     = 3248  ( 3247 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 12674  ( 12611 )
+TOLERANCE   : MaxTol   =    40.73070494  (    20.46526799 )  AvgTol   =   0.03573666428  (   0.03196816114 )
 LABELS      : N0Labels = 3  ( 3 )  N1Labels = 2  ( 2 )  N2Labels = 0  ( 0 )   TotalLabels = 5  ( 5 )   NameLabels = 5  ( 5 )   ColorLabels = 0  ( 0 )   LayerLabels = 0  ( 0 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 0  ( 0 )
index 2fc429f4dfaca52c2251700099064946a8ffc562..561b93a1a16defd11075fdebcb89a807973ef4eb 100644 (file)
@@ -1,18 +1,16 @@
 # !!!! This file is generated automatically, do not edit manually! See end script
-puts "TODO ?CR23096 ALL: CHECKSHAPE : Faulty" 
-puts "TODO ?CR23096 ALL: STATSHAPE : Faulty" 
-puts "TODO ?CR23096 ALL: TOLERANCE : Faulty" 
-puts "TODO CR23096 Mandriva2010: TEST INCOMPLETE"
+puts "TODO CR23096 ALL: STATSHAPE : Faulty" 
+
 
 set filename Z8INV5.stp
 
 set ref_data {
 DATA        : Faulties = 0  ( 0 )  Warnings = 0  ( 0 )  Summary  = 0  ( 0 )
-TPSTAT      : Faulties = 0  ( 0 )  Warnings = 129  ( 603 )  Summary  = 129  ( 603 )
-CHECKSHAPE  : Wires    = 37  ( 33 )  Faces    = 30  ( 28 )  Shells   = 1  ( 1 )   Solids   = 0 ( 0 )
-NBSHAPES    : Solid    = 22  ( 22 )  Shell    = 24  ( 24 )  Face     = 1528  ( 1523 )   Summary  = 11256  ( 11229 )
-STATSHAPE   : Solid    = 22  ( 22 )  Shell    = 24  ( 24 )  Face     = 1528  ( 1523 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 4799  ( 4789 )
-TOLERANCE   : MaxTol   =    13.30495478  (    7.159520237 )  AvgTol   =   0.03971617353  (   0.03398500929 )
+TPSTAT      : Faulties = 0  ( 0 )  Warnings = 119  ( 603 )  Summary  = 119  ( 603 )
+CHECKSHAPE  : Wires    = 16  ( 16 )  Faces    = 18  ( 18 )  Shells   = 1  ( 1 )   Solids   = 0 ( 0 )
+NBSHAPES    : Solid    = 22  ( 22 )  Shell    = 24  ( 24 )  Face     = 1520  ( 1519 )   Summary  = 11215  ( 11210 )
+STATSHAPE   : Solid    = 22  ( 22 )  Shell    = 24  ( 24 )  Face     = 1520  ( 1519 )   FreeWire = 0  ( 0 )   FreeEdge  = 0 ( 0 )   SharedEdge = 4785  ( 4786 )
+TOLERANCE   : MaxTol   =    7.159520237  (    7.159520237 )  AvgTol   =   0.02392231131  (   0.03432723702 )
 LABELS      : N0Labels = 25  ( 25 )  N1Labels = 23  ( 23 )  N2Labels = 0  ( 0 )   TotalLabels = 48  ( 48 )   NameLabels = 48  ( 48 )   ColorLabels = 0  ( 0 )   LayerLabels = 0  ( 0 )
 PROPS       : Centroid = 0  ( 0 )  Volume   = 0  ( 0 )  Area     = 0  ( 0 )
 NCOLORS     : NColors  = 0  ( 0 )