Changesets: occt

master 57f84042

2018-05-21 11:18:12

abv


Committer: abv Details Diff
0029139: Overview contains old screenshots of occt

Numbers and screenshots have been updated in the overview to correspond to V7.3.0.
Affected Issues
0029139
mod - dox/overview/images/overview_3rdparty.png Diff File
mod - dox/overview/images/overview_installation.png Diff File
mod - dox/overview/overview.md Diff File

master b9570bd5

2018-05-17 12:38:17

ifv


Committer: bugmaster Details Diff
0029734: Modeling Algorithms - Compute global properties of tessellated shape

New algorithms using mesh data for calculation have been added:
• BRepGProp_MeshCinert computes the global properties of polylines represented by a set of points
• BRepGProp_MeshProps - computes the global properties of a surface mesh.

A special flag UseTriangulation has been added in API.
If it is true which face triangulations are used as the first source for calculations, otherwise exact geometry objects (surfaces) are used.
Affected Issues
0029734
mod - dox/user_guides/draw_test_harness/draw_test_harness.md Diff File
mod - src/BRepGProp/BRepGProp.cxx Diff File
mod - src/BRepGProp/BRepGProp.hxx Diff File
add - src/BRepGProp/BRepGProp_MeshCinert.cxx Diff File
add - src/BRepGProp/BRepGProp_MeshCinert.hxx Diff File
add - src/BRepGProp/BRepGProp_MeshProps.cxx Diff File
add - src/BRepGProp/BRepGProp_MeshProps.hxx Diff File
mod - src/BRepGProp/FILES Diff File
mod - src/BRepTest/BRepTest_GPropCommands.cxx Diff File
mod - src/BRepTools/BRepTools.cxx Diff File
mod - src/BRepTools/BRepTools.hxx Diff File
mod - src/DBRep/DBRep.cxx Diff File
add - tests/bugs/modalg_7/bug29731 Diff File
add - tests/bugs/modalg_7/bug29734 Diff File
mod - tests/bugs/vis/bug173_1 Diff File

master 4b114473

2018-05-17 12:38:17

ifv


Committer: kgv Details Diff
0029734: Modeling Algorithms - Compute global properties of tessellated shape

New algorithms calculating global properties on mesh data have been added:
- BRepGProp_MeshCinert computes the global properties of polylines represented by a set of points;
- BRepGProp_MeshProps computes the global properties of a surface mesh.

Existing tool BRepGProp now automatically uses new algorithm for triangulation-only faces.
By default, algorithm will use exact geometry objects (surfaces), when it is available (as before the patch);
this behavior can be switched by a new flag UseTriangulation, forcing usage of triangulation instead of exact geometry when both defined.
Affected Issues
0029734
mod - dox/user_guides/draw_test_harness/draw_test_harness.md Diff File
mod - src/BRepGProp/BRepGProp.cxx Diff File
mod - src/BRepGProp/BRepGProp.hxx Diff File
add - src/BRepGProp/BRepGProp_MeshCinert.cxx Diff File
add - src/BRepGProp/BRepGProp_MeshCinert.hxx Diff File
add - src/BRepGProp/BRepGProp_MeshProps.cxx Diff File
add - src/BRepGProp/BRepGProp_MeshProps.hxx Diff File
mod - src/BRepGProp/FILES Diff File
mod - src/BRepTest/BRepTest_GPropCommands.cxx Diff File
mod - src/BRepTools/BRepTools.cxx Diff File
mod - src/BRepTools/BRepTools.hxx Diff File
mod - src/DBRep/DBRep.cxx Diff File
add - tests/bugs/modalg_7/bug29731 Diff File
add - tests/bugs/modalg_7/bug29734 Diff File
mod - tests/bugs/vis/bug173_1 Diff File

master d0fbc7e5

2018-05-17 06:29:04

abv


Committer: abv Details Diff
0029781: Samples - Inspector tool - history tree model is not set into external callback in VInspector

- AIS_InteractiveContex and VInspector_ViewModelHistory are set into VInspector_CallBack
- minor correction of displaySelectedPresentations () to Hide/Show(by popup menu) any AIS_InteractiveObject, not only AIS_Shape (e.g. AIS_Trihedron)
Affected Issues
0029781
mod - tools/VInspector/VInspector_Window.cxx Diff File

master 0e4e721c

2018-05-16 14:06:10

abv


Committer: abv Details Diff
0029779: Visualization, SelectMgr_SelectableObject - sensitivity change for object not activated in given mode leads to crash Affected Issues
0029779
mod - src/SelectMgr/SelectMgr_SelectionManager.cxx Diff File
mod - tests/bugs/vis/bug26462_1 Diff File

master 340549b0

2018-05-16 09:59:15

abv


Committer: abv Details Diff
0029775: Modeling Data - BRepAdaptor_CompCurve Parameterization Is Incorrect

Added wire connectivity requirement to class documentation of
BRepAdaptor_CompCurve.
Affected Issues
0029775
mod - src/BRepAdaptor/BRepAdaptor_CompCurve.hxx Diff File

master d3578357

2018-05-16 09:12:09

emv


Committer: bugmaster Details Diff
0029711: General Fuse operation produces invalid result

The following improvements have been introduced in Boolean Operations algorithm s:
1. UBTree is replaced with EBTree in Boolean operations to be able to add/remove elements into the tree of bounding boxes.
2. Repeated (nested) intersection of sub-shapes is performed with argument vertices whose tolerances increased during the operation.
3. The algorithms of Edge/Edge and Edge/Face intersection have been improved for the cases when the intersection point is located close to the edge boundaries .
4. New procedure has been implemented to ensure forced creation of Edge/Face common blocks in cases when the edge is really close to the face.
5. Post-processing of Face/Face intersection results has been improved.
6. Extension of the planar faces for Plane/Plane intersection is avoided.
7. Builder Face now better classifies potentially internal edges relatively to new faces with filtering by bounding boxes.

Side effect changes:
1. IntTools_ShrunkRange now keeps the length of the valid range of the edge.
2. The method BOPDS_DS::UpdateEdgeTolerance() has been removed as unused (replaced by the BOPAlgo_PaveFiller::UpdateEdgeTolerance()).

Test case for the issue 0029900.
Test case for the issue 0029711.
Adjustments of the existing test cases.

Avoid using uninitialized variables.
mod - src/BOPAlgo/BOPAlgo.msg Diff File
mod - src/BOPAlgo/BOPAlgo_Alerts.hxx Diff File
mod - src/BOPAlgo/BOPAlgo_BOPAlgo_msg.pxx Diff File
mod - src/BOPAlgo/BOPAlgo_BuilderFace.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_BuilderSolid.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_Builder_2.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_PaveFiller.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_PaveFiller.hxx Diff File
mod - src/BOPAlgo/BOPAlgo_PaveFiller_1.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_PaveFiller_10.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_PaveFiller_2.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_PaveFiller_3.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_PaveFiller_4.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_PaveFiller_7.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_Tools.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_Tools.hxx Diff File
mod - src/BOPDS/BOPDS_CommonBlock.cxx Diff File
mod - src/BOPDS/BOPDS_CommonBlock.hxx Diff File
mod - src/BOPDS/BOPDS_DS.cxx Diff File
mod - src/BOPDS/BOPDS_DS.hxx Diff File
mod - src/BOPDS/BOPDS_DS.lxx Diff File
mod - src/BOPDS/BOPDS_Iterator.cxx Diff File
mod - src/BOPDS/BOPDS_Iterator.hxx Diff File
mod - src/BOPTest/BOPTest_DebugCommands.cxx Diff File
mod - src/BOPTools/BOPTools_AlgoTools.cxx Diff File
mod - src/BOPTools/BOPTools_BoxBndTree.hxx Diff File
mod - src/IntTools/IntTools_Context.cxx Diff File
mod - src/IntTools/IntTools_EdgeFace.cxx Diff File
mod - src/IntTools/IntTools_FaceFace.cxx Diff File
mod - src/IntTools/IntTools_ShrunkRange.cxx Diff File
mod - src/IntTools/IntTools_ShrunkRange.hxx Diff File
mod - tests/boolean/bcut_complex/F2 Diff File
mod - tests/boolean/bfuse_complex/F5 Diff File
mod - tests/boolean/bfuse_complex/Q2 Diff File
mod - tests/boolean/bsection/R8 Diff File
mod - tests/bugs/modalg_1/buc60703_3 Diff File
mod - tests/bugs/modalg_2/bug472_3 Diff File
mod - tests/bugs/modalg_6/bug26619 Diff File
mod - tests/bugs/modalg_7/bug23660 Diff File
mod - tests/bugs/modalg_7/bug27049 Diff File
mod - tests/bugs/modalg_7/bug28113_2 Diff File
mod - tests/bugs/modalg_7/bug28123 Diff File
mod - tests/bugs/modalg_7/bug28393_1 Diff File
add - tests/bugs/modalg_7/bug29711 Diff File
add - tests/bugs/modalg_7/bug29900 Diff File
mod - tests/bugs/moddata_2/bug26_2 Diff File

master 01226433

2018-05-15 07:43:57

BenjaminBihler


Committer: bugmaster Details Diff
0029765: BOPTools_AlgoTools::MakeSplitEdge Creates Illegal Edge

Method MakeSplitEdge checks arguments order.
This makes the method more generic.
Taking vertex orientation into account.
Affected Issues
0029765
mod - src/BOPTools/BOPTools_AlgoTools_2.cxx Diff File

master 32ca7711

2018-05-14 16:25:16

abv


Committer: abv Details Diff
0029768: Visualization, TKOpenGl - structure is entirely clipped by suppressed clipping

OpenGl_Structure::Render(), added missing check for disabled state of the plane.
vclipplane command has been extended with new option -setOverrideGlobal.
Affected Issues
0029768
mod - src/OpenGl/OpenGl_Structure.cxx Diff File
mod - src/ViewerTest/ViewerTest_ViewerCommands.cxx Diff File
add - tests/bugs/vis/bug29768 Diff File

master 3d77e962

2018-05-14 12:33:55

abv


Committer: abv Details Diff
0029764: Foundation Classes, TColStd_MapIteratorOfPackedMapOfInteger - workaround Visual Studio Linker bug with enabled CLI Affected Issues
0029764
mod - src/TColStd/TColStd_PackedMapOfInteger.cxx Diff File
mod - src/TColStd/TColStd_PackedMapOfInteger.hxx Diff File

master 8f138407

2018-05-14 05:54:08

abv


Committer: abv Details Diff
0029754: Coding Rules - replace Standard_Integer with Graphic3d_ZLayerId for consistency Affected Issues
0029754
mod - src/AIS/AIS_InteractiveContext.cxx Diff File
mod - src/AIS/AIS_InteractiveContext.hxx Diff File
mod - src/Graphic3d/Graphic3d_CView.hxx Diff File
mod - src/OpenGl/OpenGl_View.hxx Diff File
mod - src/PrsMgr/PrsMgr_Presentation.cxx Diff File
mod - src/PrsMgr/PrsMgr_Presentation.hxx Diff File
mod - src/PrsMgr/PrsMgr_PresentationManager.cxx Diff File
mod - src/PrsMgr/PrsMgr_PresentationManager.hxx Diff File
mod - src/V3d/V3d_Viewer.cxx Diff File
mod - src/V3d/V3d_Viewer.hxx Diff File

master 14deaf42

2018-05-11 12:17:12

abv


Committer: abv Details Diff
0029755: Proofread changes in the user guides from v7.2 to v7.3

Recent modifications and additions in the user and dev guides have been reviewed (except for upgrade.md and inspector.md).
Affected Issues
0029755
mod - dox/dev_guides/git_guide/git_guide.md Diff File
mod - dox/dev_guides/tests/tests.md Diff File
mod - dox/user_guides/boolean_operations/boolean_operations.md Diff File
mod - dox/user_guides/draw_test_harness/draw_test_harness.md Diff File
mod - dox/user_guides/modeling_algos/modeling_algos.md Diff File
mod - dox/user_guides/modeling_data/modeling_data.md Diff File
mod - dox/user_guides/visualization/visualization.md Diff File
mod - dox/user_guides/xde/xde.md Diff File

master 9ce99357

2018-05-10 08:50:03

abv


Committer: abv Details Diff
0029746: Modeling Algoriothms - declare Boolean operation classes in BRepAlgo package as deprecated

The API classes in the package BRepAlgo providing access to old Boolean operations (Fuse, Common, Cut, Section) are marked as deprecated.
Corresponding classes from the package BRepAlgoAPI should be used instead.
Affected Issues
0029746
mod - dox/dev_guides/upgrade/upgrade.md Diff File
mod - src/BRepAlgo/BRepAlgo_Common.cxx Diff File
mod - src/BRepAlgo/BRepAlgo_Common.hxx Diff File
mod - src/BRepAlgo/BRepAlgo_Cut.cxx Diff File
mod - src/BRepAlgo/BRepAlgo_Cut.hxx Diff File
mod - src/BRepAlgo/BRepAlgo_Fuse.cxx Diff File
mod - src/BRepAlgo/BRepAlgo_Fuse.hxx Diff File
mod - src/BRepAlgo/BRepAlgo_Section.cxx Diff File
mod - src/BRepAlgo/BRepAlgo_Section.hxx Diff File
mod - src/BRepTest/BRepTest_TopologyCommands.cxx Diff File

master b2300241

2018-05-10 03:53:15

abv


Committer: abv Details Diff
0029749: Samples - Inspector tool - remove "modified" column in TNaming_NamedShape presentation Affected Issues
0029749
mod - tools/DFBrowserPane/DFBrowserPane_TNamingNamedShape.cxx Diff File

master 042e09aa

2018-05-08 17:21:08

abv


Committer: abv Details Diff
0029748: Samples - Inspector tool - use recently opened files in TInspectorEXE

- recently files using in open file dialog
- correction of TInspectorEXE title to show opened file path by Start
Affected Issues
0029748
mod - tools/DFBrowser/DFBrowser_Window.cxx Diff File
mod - tools/DFBrowser/DFBrowser_Window.hxx Diff File
mod - tools/ShapeView/ShapeView_Window.cxx Diff File
mod - tools/TInspector/TInspector_Communicator.hxx Diff File
mod - tools/TInspector/TInspector_PluginParameters.hxx Diff File
mod - tools/TInspector/TInspector_Preferences.cxx Diff File
mod - tools/TInspector/TInspector_Window.cxx Diff File
mod - tools/TInspector/TInspector_Window.hxx Diff File
mod - tools/TInspectorAPI/TInspectorAPI_PluginParameters.hxx Diff File
mod - tools/TInspectorEXE/TInspectorEXE.cxx Diff File
mod - tools/TInspectorEXE/TInspectorEXE_OpenFileDialog.cxx Diff File
mod - tools/TInspectorEXE/TInspectorEXE_OpenFileDialog.hxx Diff File
mod - tools/TInspectorEXE/TInspectorEXE_OpenFileViewModel.cxx Diff File
mod - tools/VInspector/VInspector_Window.cxx Diff File

master ed667b90

2018-05-08 16:56:11

abv


Committer: abv Details Diff
0029747: Samples - Inspector tool - start DFBrowser inside FuncDemo qt sample

new Model->DFBrowser action to start Inspector tool with active DFBrowser plugin filled by the sample OCAF application.
To update content of the DFBrowser, use <F5> shortcut.
Affected Issues
0029747
mod - samples/qt/FuncDemo/CMakeLists.txt Diff File
mod - samples/qt/FuncDemo/src/mainwindow.cpp Diff File
mod - samples/qt/FuncDemo/src/mainwindow.h Diff File

master 2e93433e

2018-05-08 16:17:09

abv


Committer: abv Details Diff
0029735: Draw Harness - command to set 2D mode for viewer in ViewerTest package

vinit command has been extended with new option -2d_mode.
Added new command v2dmode to switch On/Off the mode.
Affected Issues
0029735
mod - src/ViewerTest/ViewerTest_ViewerCommands.cxx Diff File

master 26b004e9

2018-05-08 14:55:09

abv


Committer: abv Details Diff
0029743: Samples - Inspector tool - crash by selecting TNaming_UsedShapes tree item

- TNaming_UsedShapes is corrected to do not call methods of empty TopoDS_Shape
- TNaming_NamedShape is corrected to have not NULL TNaming_RefShape even if TopoDS_Shape is NULL(TNaming_Builder::Delete).
- DFBrowserPane presentation tree item for this is corrected in the same way and obsolete methods of processing SortedReferences are removed.
Affected Issues
0029743
mod - src/TNaming/TNaming_NamedShape.cxx Diff File
mod - src/TNaming/TNaming_UsedShapes.cxx Diff File
add - tests/tools/dfbrowser/A7 Diff File
mod - tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.cxx Diff File
mod - tools/DFBrowserPane/DFBrowserPane_TNamingUsedShapes.hxx Diff File

master 72e4db54

2018-05-08 12:33:20

abv


Committer: abv Details Diff
0029733: TInspector can't open several cbf files

The issue is not reproduced anymore. The integration contains DRAW test for described functionality.
Affected Issues
0029733
add - tests/tools/dfbrowser/A8 Diff File

master be480fe7

2018-05-08 12:32:16

abv


Committer: abv Details Diff
0029744: Visualization - SelectMgr_ViewerSelector::PickedPoint() returns wrong 3D point for objects with transformation persistence

SelectMgr_RectangularFrustum::DetectedPoint() now takes into account myScale.
mod - src/SelectMgr/SelectMgr_RectangularFrustum.cxx Diff File
mod - tests/bugs/vis/bug26304 Diff File

master 0c80bdbf

2018-05-07 12:40:18

abv


Committer: abv Details Diff
0029741: Samples - Inspector tool - wide icon size in table of TNamingNamedShape attribute in DFBrowser plugin Affected Issues
0029741
mod - tools/DFBrowserPane/DFBrowserPane_ItemDelegateButton.cxx Diff File

master b4dfd436

2018-05-07 11:20:38

abv


Committer: abv Details Diff
0029739: Draw Harness - vdonly does not hide displayed objects Affected Issues
0029739
mod - src/ViewerTest/ViewerTest.cxx Diff File
add - tests/v3d/wire_solid/L1 Diff File

master fbcef69b

2018-05-07 08:51:58

abv


Committer: abv Details Diff
0029737: Data Exchange - Revert optimization in XCAF for format compability

Revert changes from 0029338, which were affected on order of GDT attribute sublabels.
mod - src/XCAFDoc/XCAFDoc_Datum.cxx Diff File
mod - src/XCAFDoc/XCAFDoc_Dimension.cxx Diff File
mod - src/XCAFDoc/XCAFDoc_GeomTolerance.cxx Diff File
mod - tests/gdt/dimensions/A6 Diff File

master 94443b48

2018-04-27 12:02:32

abv


Committer: abv Details Diff
0029730: OCAF User's Guide correction for case of attributes with User defined GUID

Added description of attributes usage with User defined GUID
Affected Issues
0029730
mod - dox/user_guides/ocaf/ocaf.md Diff File

master 948fe6ca

2018-04-26 11:35:35

emv


Committer: bugmaster Details Diff
0028747: Incorrect result of the section operation after edge refinement

Implementation of the method for simplification of the result of Boolean Operation on the API level.
The method BRepAlgoAPI_BuilderAlgo::SimplifyResult has been added, so the derived classes such as BooleanOpeation and Splitter can also use this method.
The result shape simplification should be called after the operation is done. The simplification is performed by the means of ShapeUpgrade_UnifySameDomain algorithm.

Draw command "bsimplify" has been added to control the simplification options.
Documentation for new functionality and draw commands controlling the options of Boolean operations.
Test cases for the new functionality.

Side-effect change:
The algorithms in Boolean component have been changed to use the BRepTools_History as a History tool.
Now it became possible to disable the collection of shapes modifications during Boolean Operations, which may be useful for performance sake (in draw the option is controlled by *setfillhistory* command).
Draw command "unifysamedom" has been changed to accept the angular tolerance in degrees instead of radians.
mod - dox/dev_guides/upgrade/upgrade.md Diff File
mod - dox/user_guides/boolean_operations/boolean_operations.md Diff File
add - dox/user_guides/boolean_operations/images/bop_simple_001.png Diff File
add - dox/user_guides/boolean_operations/images/bop_simple_002.png Diff File
mod - dox/user_guides/draw_test_harness/draw_test_harness.md Diff File
mod - dox/user_guides/modeling_algos/modeling_algos.md Diff File
mod - src/BOPAlgo/BOPAlgo_Builder.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_Builder.hxx Diff File
rm - src/BOPAlgo/BOPAlgo_BuilderShape.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_BuilderShape.hxx Diff File
mod - src/BOPAlgo/BOPAlgo_Builder_4.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_CellsBuilder.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_CellsBuilder.hxx Diff File
mod - src/BOPAlgo/BOPAlgo_RemoveFeatures.cxx Diff File
mod - src/BOPAlgo/BOPAlgo_RemoveFeatures.hxx Diff File
mod - src/BOPAlgo/FILES Diff File
mod - src/BOPTest/BOPTest_APICommands.cxx Diff File
mod - src/BOPTest/BOPTest_BOPCommands.cxx Diff File
mod - src/BOPTest/BOPTest_CellsCommands.cxx Diff File
mod - src/BOPTest/BOPTest_Objects.cxx Diff File
mod - src/BOPTest/BOPTest_Objects.hxx Diff File
mod - src/BOPTest/BOPTest_OptionCommands.cxx Diff File
mod - src/BOPTest/BOPTest_PartitionCommands.cxx Diff File
mod - src/BOPTest/BOPTest_RemoveFeaturesCommands.cxx Diff File
mod - src/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.cxx Diff File
mod - src/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.hxx Diff File
mod - src/BRepAlgoAPI/BRepAlgoAPI_BuilderAlgo.cxx Diff File
mod - src/BRepAlgoAPI/BRepAlgoAPI_BuilderAlgo.hxx Diff File
mod - src/BRepAlgoAPI/BRepAlgoAPI_Defeaturing.cxx Diff File
mod - src/BRepAlgoAPI/BRepAlgoAPI_Defeaturing.hxx Diff File
mod - src/BRepAlgoAPI/BRepAlgoAPI_Splitter.cxx Diff File
mod - src/BRepAlgoAPI/BRepAlgoAPI_Splitter.hxx Diff File
mod - src/BRepFeat/BRepFeat_Builder.cxx Diff File
mod - src/BRepTest/BRepTest_FeatureCommands.cxx Diff File
mod - src/BRepTest/BRepTest_FilletCommands.cxx Diff File
mod - src/BRepTest/BRepTest_HistoryCommands.cxx Diff File
mod - src/BRepTest/BRepTest_Objects.cxx Diff File
mod - src/BRepTest/BRepTest_Objects.hxx Diff File
mod - src/BRepTest/BRepTest_SweepCommands.cxx Diff File
mod - src/BRepTools/BRepTools_History.cxx Diff File
mod - src/BRepTools/BRepTools_History.hxx Diff File
mod - src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.hxx Diff File
mod - src/SWDRAW/SWDRAW_ShapeUpgrade.cxx Diff File
mod - tests/boolean/grids.list Diff File
add - tests/boolean/history/A9 Diff File
add - tests/boolean/simplify/A1 Diff File
add - tests/boolean/simplify/A2 Diff File
add - tests/boolean/simplify/A3 Diff File
add - tests/boolean/simplify/A4 Diff File
add - tests/boolean/simplify/A5 Diff File
mod - tests/bugs/heal/bug27729 Diff File
mod - tests/bugs/modalg_6/bug28207 Diff File
mod - tests/bugs/modalg_6/bug28343_1 Diff File
mod - tests/bugs/modalg_6/bug28343_2 Diff File
mod - tests/perf/modalg/bug26513 Diff File
mod - tests/perf/modalg/bug29237_1 Diff File
mod - tests/perf/modalg/bug29237_2 Diff File
mod - tests/perf/modalg/bug29237_3 Diff File
 First  Prev  1 2 3 ... 30 ... 60 ... 73 74 75 76 77 78 79 ... 90 ... 120 ... 150 ... 180 ... 210 ... 240 ... 254 255 256  Next  Last