Opened 13 years ago

Closed 13 years ago

#3499 closed Bugs (fixed)

VectorConcept missing DefaultConstructible concept check

Reported by: christoph.heindl@… Owned by: Gunter
Milestone: Boost 1.41.0 Component: uBLAS
Version: Boost 1.40.0 Severity: Problem
Keywords: Cc:

Description

Current (and at least in 1.39.0) documentation says that Vector is a refinement of DefaultConstructible. However, concept checking classes seem to ignore to test for DefaultConstructible.

Change History (3)

comment:1 by Gunter, 13 years ago

(In [56535]) see #3499:

comment:2 by Gunter, 13 years ago

Status: newassigned

in order to execute all concept checks one has to update the jamfile in libs/numeric/ublas/test. The internal tests are disabled by default because they are very expensive.

Index: test/Jamfile.v2
===================================================================
--- test/Jamfile.v2     (Revision 56525)
+++ test/Jamfile.v2     (Arbeitskopie)
@@ -103,6 +103,8 @@ test-suite numeric/uBLAS
       [ compile concepts.cpp
         : # requirements
             <define>EXTERNAL
+            <define>INTERAL
+            <define>SKIP_BAD
             <toolset>intel-linux:<cxxflags>"-Xc"
                        <toolset>darwin:<cxxflags>"-fabi-version=0"
       ]

comment:3 by Gunter, 13 years ago

Resolution: fixed
Status: assignedclosed

(In [56614]) fix #3499 and fix #3501:

  • added inline to free helper functions
  • added missing concept check
  • fixed broken internal checks
Note: See TracTickets for help on using tickets.