User profile: JLBorges

User info
User name:JLBorges
History
Joined:
Number of posts:5443
Latest posts:

Using ctime to measure the time for quicksort
[tt]std::chrono::high_resolution_clock[/tt] does not measure processor time; it measures wall clock ...

Template with a specialized template class parameter. How?
> I really want the syntax " Cable<Static_Property<value>> " > it breaks with any type that has a "c...

Using ctime to measure the time for quicksort
> your example isn't using the high_resolution_clock, but the steady_clock. To measure time, we nee...

Template with a specialized template class parameter. How?
Three options: 1. http://coliru.stacked-crooked.com/a/e5f4783f874034b2 2. http://coliru.stacked-croo...

How to initialise my bool array?
[code]std::vector<bool> myArray( myVector.size() ) ; // every element == false bool myArray2[1000] ...