User Greg Rogers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T15:53:19Zhttp://stackoverflow.com/feeds/user/5963http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1798455/concurrency-how-does-shared-memory-vs-message-passing-handle-large-data-structur/1798930#17989303Answer by Greg Rogers for Concurrency: how does shared memory vs message passing handle large data structures?Greg Rogers2009-11-25T18:17:02Z2009-11-25T18:17:02Z<p>Most modern processors use variants of the <a href="http://en.wikipedia.org/wiki/MESI%5Fprotocol" rel="nofollow">MESI protocol</a>. Because of the shared state, Passing read-only data between different threads is very cheap. Modified shared data is very expensive though, because all other caches that store this cache line must invalidate it.</p>
<p>So if you have read-only data, it is very cheap to share it between threads instead of copying with messages. If you have read-mostly data, it can be expensive to share between threads, partly because of the need to synchronize access, and partly because writes destroy the cache friendly behavior of the shared data.</p>
<p><a href="http://en.wikipedia.org/wiki/Persistent%5Fdata%5Fstructure" rel="nofollow">Immutable data structures</a> can be beneficial here. Instead of changing the actual data structure, you simply make a new one that shares most of the old data, but with the things changed that you need changed. Sharing a single version of it is cheap, since all the data is immutable, but you can still update to a new version efficiently.</p>
http://stackoverflow.com/questions/1757942/interlocked-and-memory-barriers/1758335#17583351Answer by Greg Rogers for Interlocked and Memory BarriersGreg Rogers2009-11-18T19:13:30Z2009-11-18T19:13:30Z<p>Memory barriers don't particularly help you. They specify an ordering between memory operations, in this case each thread only has one memory operation so it doesn't matter. One typical scenario is writing non-atomically to fields in a structure, a memory barrier, then publishing the address of the structure to other threads. The Barrier guarantees that the writes to the structures members are seen by all CPUs before they get the address of it.</p>
<p>What you really need are atomic operations, ie. InterlockedXXX functions, or volatile variables in C#. If the read in Bar were atomic, you could guarantee that neither the compiler, nor the cpu, does any optimizations that prevent it from reading either the value before the write in Foo, or after the write in Foo depending on which gets executed first. Since you are saying that you "know" Foo's write happens before Bar's read, then Bar would always return true.</p>
<p>Without the read in Bar being atomic, it could be reading a partially updated value (ie. garbage), or a cached value (either from the compiler or from the CPU), both of which may prevent Bar from returning true which it should.</p>
<p>Most modern CPU's guarantee word aligned reads are atomic, so the real trick is that you have to tell the compiler that the read is atomic.</p>
http://stackoverflow.com/questions/282176/waitpid-equivalent-with-timeout5Waitpid equivalent with timeout?Greg Rogers2008-11-11T21:19:59Z2009-11-10T02:39:48Z
<p>Imagine I have a process that starts several child processes. The parent needs to know when a child exits.</p>
<p>I can use waitpid, but then if/when the parent needs to exit I have no way of telling the thread that is blocked in waitpid to exit gracefully and join it. It's nice to have things clean up themselves, but it may not be that big of a deal.</p>
<p>I can use waitpid with WNOHANG, and then sleep for some arbitrary time to prevent a busy wait. However then I can only know if a child has exited every so often. In my case it may not be super critical that I know when a child exits right away, but I'd like to know ASAP...</p>
<p>I can use a signal handler for SIGCHLD, and in the signal handler do whatever I was going to do when a child exits, or send a message to a different thread to do some action. But using a signal handler obfuscates the flow of the code a little bit.</p>
<p>What I'd really like to do is use waitpid on some timeout, say 5 sec. Since exiting the process isn't a time critical operation, I can lazily signal the thread to exit, while still having it blocked in waitpid the rest of the time, always ready to react. <em>Is there such a call in linux? Of the alternatives, which one is best?</em></p>
<p><hr /></p>
<p>EDIT:</p>
<p>Another method based on the replies would be to block SIGCHLD in all threads with pthread_sigmask(). Then in one thread, keep calling sigtimedwait() while looking for SIGCHLD. This means that I can time out on that call and check whether the thread should exit, and if not, remain blocked waiting for the signal. Once a SIGCHLD is delivered to this thread, we can react to it immediately, and in line of the wait thread, without using a signal handler.</p>
http://stackoverflow.com/questions/142331/resources-for-high-performance-computing-in-c/142475#1424757Answer by Greg Rogers for Resources for high performance computing in C++Greg Rogers2008-09-26T23:26:34Z2009-11-08T19:19:56Z<p>practically all HPC code I've heard of is either for solving sytems of linear equations or FFT's. Heres some links to start you off at least in the libraries used:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Blas" rel="nofollow">BLAS</a> - standard set of routines for linear algebra - stuff like matrix multiplication</li>
<li><a href="http://en.wikipedia.org/wiki/Lapack" rel="nofollow">LAPACK</a> - standard set of higher level linear algebra routines - stuff like LU decomp.</li>
<li><a href="http://en.wikipedia.org/wiki/Automatically%5FTuned%5FLinear%5FAlgebra%5FSoftware" rel="nofollow">ATLAS</a> - Optimized BLAS implementation</li>
<li><a href="http://en.wikipedia.org/wiki/FFTW" rel="nofollow">FFTW</a> - Optimized FFT implementation</li>
<li><a href="http://people.scs.fsu.edu/~burkardt/f%5Fsrc/pblas/pblas.html" rel="nofollow">PBLAS</a> - BLAS for distributed processors</li>
<li><a href="http://people.scs.fsu.edu/~burkardt/f%5Fsrc/scalapack/scalapack.html" rel="nofollow">SCALAPACK</a> - distributed LAPACK implementation</li>
<li><a href="http://en.wikipedia.org/wiki/Message%5FPassing%5FInterface" rel="nofollow">MPI</a> - Communications library for distributed systems.</li>
<li><a href="http://mcs.anl.gov/petsc" rel="nofollow">PETSc</a> - Scalable nonlinear and linear solvers (user-extensible, interface to much above)</li>
</ul>
http://stackoverflow.com/questions/1663949/how-do-i-get-all-permutations-of-xpy-in-c/1664052#16640522Answer by Greg Rogers for How do I get all permutations of xPy in C?Greg Rogers2009-11-02T22:11:40Z2009-11-02T22:11:40Z<p>I've used <a href="http://photon.poly.edu/~hbr/boost/combinations.html" rel="nofollow">this</a> library before (note it is C++) in code that needed to do something similar. It has permutations and combinations, with and without repetition. For your problem, this should suffice (untested...):</p>
<pre><code>std::vector<int> v;
v.push_back(1);
v.push_back(2);
v.push_back(3);
std::vector<int>::iterator first = v.begin(), middle = v.begin() + 2, last = v.end();
do {
// do stuff with elements in range first...middle (but dont change them)
} while(next_partial_permutation(first, middle, last));
</code></pre>
http://stackoverflow.com/questions/1601060/stl-like-container-with-o1-performance/1601467#16014674Answer by Greg Rogers for STL like container with O(1) performance.Greg Rogers2009-10-21T15:06:57Z2009-10-21T15:06:57Z<p>tr1's <code>unordered_set</code> (also available in boost) is probably what you are looking for. You don't specify whether or not you want a <em>sequence container</em> or not, and you don't specify <em>what</em> you are using to give O(1) lookup (ie. vectors have O(1) lookup on index, unordered_set mentioned above has O(1) <em>average case</em> lookup based on the element itself).</p>
http://stackoverflow.com/questions/1595270/how-does-the-stls-multimap-insert-respect-orderings/1595473#15954731Answer by Greg Rogers for how does the stl's multimap insert respect orderings?Greg Rogers2009-10-20T15:28:18Z2009-10-20T15:28:18Z<p>Boost <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/multi%5Findex/doc/index.html" rel="nofollow">multi_index</a> supports what you are trying to do, if you don't want to take the workaround given by <a href="http://stackoverflow.com/questions/1595270/how-does-the-stls-multimap-insert-respect-orderings/1595344#1595344">Jerry Coffin</a>.</p>
http://stackoverflow.com/questions/130117/throwing-exceptions-out-of-a-destructor22throwing exceptions out of a destructorGreg Rogers2008-09-24T21:34:01Z2009-10-06T19:39:58Z
<p>Most people say <em>never</em> throw an exception out of a destructor - doing so results in undefined behavior. Stroustrup makes the point that <em>"the vector destructor explicitly invokes the destructor for every element. This implies that if an element destructor throws, the vector destruction fails... There is really no good way to protect against exceptions thrown from destructors, so the library makes no guarantees if an element destructor throws" (from Appendix E3.2)</em>.</p>
<p><a href="http://www.kolpackov.net/projects/c++/eh/dtor-1.xhtml" rel="nofollow">This article</a> seems to say otherwise - that throwing destructors are more or less okay.</p>
<p><em>So my question is this - if throwing from a destructor results in undefined behavior, how do you handle errors that occur during a destructor?</em></p>
<p>If an error occurs during a cleanup operation, do you just ignore it? If it is an error that can potentially be handled up the stack but not right in the destructor, doesn't it make sense to throw an exception out of the destructor?</p>
<p>Obviously these kinds of errors are rare, but possible.</p>
http://stackoverflow.com/questions/1526531/wildcard-search-inside-a-boost-multiindex-data-structure/1526909#15269091Answer by Greg Rogers for Wildcard search inside a Boost.MultiIndex data structure?Greg Rogers2009-10-06T17:13:59Z2009-10-06T17:13:59Z<p>In your specific case, you can do a lower_bound("foo") and then walk forwards looking for matches, until you hit something that doesn't match or reach the end of the container. I don't think there is a general way to do this lookup though.</p>
http://stackoverflow.com/questions/1489239/do-threads-clean-up-after-themselves-in-win32-mfc-and-posix/1489305#14893051Answer by Greg Rogers for Do threads clean-up after themselves in Win32/MFC and POSIX?Greg Rogers2009-09-28T20:51:49Z2009-09-28T20:51:49Z<p>Yes, the resources are automatically released upon thread termination. This is a perfectly normal and acceptable thing to do to have a background thread.</p>
<p>To clean up after a thread you must either join it, or detach it (in which case you can no longer join it).</p>
<p>Here's a quote from the boost thread docs that somewhat explains that (but not exactly).</p>
<blockquote>
<p>When the boost::thread object that
represents a thread of execution is
destroyed the thread becomes detached.
Once a thread is detached, it will
continue executing until the
invocation of the function or callable
object supplied on construction has
completed, or the program is
terminated. A thread can also be
detached by explicitly invoking the
detach() member function on the
boost::thread object. In this case,
the boost::thread object ceases to
represent the now-detached thread, and
instead represents Not-a-Thread.</p>
<p>In order to wait for a thread of
execution to finish, the join() or
timed_join() member functions of the
boost::thread object must be used.
join() will block the calling thread
until the thread represented by the
boost::thread object has completed. If
the thread of execution represented by
the boost::thread object has already
completed, or the boost::thread object
represents Not-a-Thread, then join()
returns immediately. timed_join() is
similar, except that a call to
timed_join() will also return if the
thread being waited for does not
complete when the specified time has
elapsed.</p>
</blockquote>
http://stackoverflow.com/questions/1473448/avoid-casting-from-volatile-static-uint8t-to-uint8t-in-function-calls/1473512#14735120Answer by Greg Rogers for Avoid casting from volatile static uint8_t to uint8_t in function calls?Greg Rogers2009-09-24T18:52:18Z2009-09-24T18:52:18Z<p>You don't have to explicitly cast. The second form is completely valid for any standards compliant C compiler.</p>
<p>It is only something like this where you would need to cast:</p>
<pre><code>static void func( uint8_t *var );
static volatile uint8_t foo;
int main() {
/* Here we have to cast to uint8_t */
func( (uint8_t*) &foo );
/* This will not compile */
func( &foo );
}
</code></pre>
http://stackoverflow.com/questions/1466940/what-is-better-for-a-message-queue-mutex-cond-or-mutexsemaphore/1467349#14673492Answer by Greg Rogers for What is better for a message queue? mutex & cond or mutex&semaphore?Greg Rogers2009-09-23T17:02:48Z2009-09-23T17:08:22Z<p>A single semaphore does not do the job - you need to be comparing <strong>(mutex + semaphore)</strong> and <strong>(mutex + condition variable)</strong>.</p>
<p>It is pretty easy to see this by trying to implement it:</p>
<pre><code>void push(T t)
{
queue.push(t);
sem.post();
}
T pop()
{
sem.wait();
T t = queue.top();
queue.pop();
return t;
}
</code></pre>
<p>As you can see there is no mutual exclusion when you are actually reading/writing to the queue, even though the signalling (from the semaphore) is there. Multiple threads can call push at the same time and break the queue, or multiple threads could call pop at the same time and break it. Or, a thread could call pop and be removing the first element of the queue while another thread called push.</p>
<p>You should use whichever you think is easier to implement, I doubt performance will vary much if any (it might be interesting to measure though).</p>
http://stackoverflow.com/questions/1461381/why-are-long-and-int-not-compatible-in-32-bit-code5Why are "long *" and "int *" not compatible in 32-bit code?Greg Rogers2009-09-22T17:14:50Z2009-09-23T05:54:24Z
<p>I was wondering why the following code doesn't compile:</p>
<pre><code>void foo_int(int *a) { }
void foo_long(long *a) { }
int main()
{
int i;
long l;
foo_long(&i);
foo_int(&l);
}
</code></pre>
<p>I am using GCC, and neither calls work either in C or C++. Since it is a 32-bit system, both <strong>int</strong> and <strong>long</strong> are signed 32-bit integers (which can be verified with sizeof at compile time).</p>
<p>The reason I am asking is that I have two separate header files, neither are under my control, and one does something like: <code>typedef unsigned long u32;</code> and the other: <code>typedef unsigned int uint32_t;</code>. The declarations are basically compatible, except when I use them as pointers as in the above code snippet, I have to explicitly cast.</p>
<p>Any idea why this is?</p>
http://stackoverflow.com/questions/1461381/why-are-long-and-int-not-compatible-in-32-bit-code/1462060#14620603Answer by Greg Rogers for Why are "long *" and "int *" not compatible in 32-bit code?Greg Rogers2009-09-22T19:18:25Z2009-09-22T19:18:25Z<p>Since I don't particularly like any of the answers given so far, I went to the C++ standard:</p>
<blockquote>
<p>4.7 Integral conversions [conv.integral]</p>
<p>1 An rvalue of an integer type can be
converted to an rvalue of another
integer type. An rvalue of an
enumeration type can be converted to
an rvalue of an integer type.</p>
</blockquote>
<p>This says it is allowed to implicitly convert one integer to another, so the two types (as they are the same size), are interchangeable as rvalues.</p>
<blockquote>
<p>4.10 Pointer conversions [conv.ptr]</p>
<p>1 An integral constant expression
(<em>expr.const</em>) rvalue of integer type
that evaluates to zero (called a null
pointer constant) can be converted to a pointer type. The
result is a value (called the null
pointer value of that type)
distinguishable from every pointer to
an object or function. Two null
pointer values of the same type shall
compare equal. The conversion of a
null pointer constant to a pointer
to cv-qualified type is a single
conversion, and not the sequence of a
pointer conversion followed by
a qualification conversion
(<em>conv.qual</em>).</p>
<p>2 An rvalue of type "pointer to cv T,"
where T is an object type, can be
converted to an rvalue of type
"pointer to cv void." The result
of converting a "pointer to cv T" to
a "pointer to cv void" points to the
start of the storage location where
the object of type T resides, as
if the object is a most derived
object (<em>intro.object</em>) of type T
(that is, not a base class subobject).</p>
<p>3 An rvalue of type "pointer to cv D,"
where D is a class type, can be
converted to an rvalue of type
"pointer to cv B," where B is a base
class (<em>class.derived</em>) of D.
If B is an inaccessible
(<em>class.access</em>) or ambiguous
(<em>class.member.lookup</em>) base class of
D, a program that necessitates this
conversion is ill-formed. The result
of the conversion is a pointer to
the base class sub-object of the
derived class object. The null
pointer value is converted to the null
pointer value of the destination type.</p>
</blockquote>
<p>It is only allowed to implicitly convert:</p>
<ul>
<li>0 to any pointer type (making it a null pointer)</li>
<li>any pointer type to void* (properly cv-qualified)</li>
<li>derived pointer to a base pointer (properly cv-qualified)</li>
</ul>
<p>So even though the underlying machine type is the same, it is not allowed to implicitly convert between the two types.</p>
http://stackoverflow.com/questions/1429547/how-to-prevent-overloading/1429622#1429622-2Answer by Greg Rogers for How to prevent Overloading?Greg Rogers2009-09-15T21:05:08Z2009-09-15T21:05:08Z<p>The only reasonable way would be to give the function C linkage:</p>
<pre><code>extern "C" void foo(int , int);
</code></pre>
<p>This works because with C linkage, names aren't mangled, so you can't do any overloading (which relies on encoding the types of arguments into the symbol name).</p>
<p>Obviously this won't extend to member functions.</p>
http://stackoverflow.com/questions/1423566/template-type-conversion/1423681#14236814Answer by Greg Rogers for Template Type ConversionGreg Rogers2009-09-14T20:17:39Z2009-09-14T20:17:39Z<p>Your question is very unclear, but theres nothing wrong with making the operator= something like this:</p>
<pre><code>// incomplete, but you get the idea
template<class U>
basic_Matrix2D<T> & operator=(const basic_Matrix2D<U> &x)
{
rows = x.rows;
cols = x.cols;
data = new T[rows * cols];
for (size_t i = 0; i < rows * cols; ++i)
data[i] = x.data[i];
}
</code></pre>
<p>This will allow you to assign from any matrix where the expression <code>T t; t = U();</code> is well formed. And if you can't, it will fail to compile. You can also include a simple <code>basic_Matrix2D<T> & operator=(const basic_Matrix2D<T> &);</code> assignment operator as well - maybe you can get some additional efficiency or something out of it.</p>
http://stackoverflow.com/questions/102459/why-does-stdstack-use-stddeque-by-default10Why does std::stack use std::deque by default?Greg Rogers2008-09-19T14:50:23Z2009-09-14T15:20:48Z
<p>Since the only operations required for a container to be used in a stack are:</p>
<ul>
<li>back()</li>
<li>push_back()</li>
<li>pop_back()</li>
</ul>
<p>Why is the default container for it a deque instead of a vector?</p>
<p>Don't deque reallocations give a buffer of elements before front() so that push_front() is an efficient operation? Aren't these elements wasted since they will never ever be used in the context of a stack?</p>
<p>If there is no overhead for using a deque this way instead of a vector, why is the default for priority_queue a vector not a deque also? (priority_queue requires front(), push_back(), and pop_back() - essentially the same as for stack)</p>
<p><hr /></p>
<p>It appears that the way deque is usually implemented is a variable size array of fixed size arrays. This makes growing faster than a vector (which requires reallocation and copying), so for something like a stack which is all about adding and removing elements, deque is likely a better choice. priority_queue requires indexing heavily, as every removal and insertion requires you to run pop_heap() or push_heap(). This probably makes vector a better choice there since adding an element is still amortized constant anyways.</p>
http://stackoverflow.com/questions/1411821/what-would-be-the-purpose-of-using-the-reference-and-dereference-operators-immedi/1411887#141188710Answer by Greg Rogers for What would be the purpose of using the reference and dereference operators immediately in sequence "&*B" ?Greg Rogers2009-09-11T16:12:30Z2009-09-11T16:12:30Z<p>I've done similar things with iterators - dereference the iterator to get a reference, and then do the "&" operator to get a pointer.</p>
<p>I don't see why it would be doing anything here though. If the type to the right of "&*" is a pointer type it does nothing.</p>
http://stackoverflow.com/questions/1396458/confusing-function-lookup-with-templates-in-c/1396592#1396592-1Answer by Greg Rogers for Confusing function lookup with templates in C++Greg Rogers2009-09-08T22:07:48Z2009-09-08T22:07:48Z<p>The following program works fine for me on gcc 4.3 and gcc 4.1 (the only two compilers I have on hand:</p>
<pre><code>#include <iostream>
#include <vector>
namespace name {
template <typename T>
void foo(const T& t) {
bar(t);
}
template <typename T>
void bar(const T& t) {
baz(t);
}
void baz(int) {
std::cout << "baz(int)\n";
}
struct test {};
void bar(const test&) {
std::cout << "bar(const test&)\n";
}
void bar(const double&) {
std::cout << "bar(const double&)\n";
}
typedef std::vector<int> Vec;
void bar(const Vec&) {
std::cout << "bar(const Vec&)\n";
}
}
int main()
{
name::foo(name::test());
name::foo(5.0);
name::foo(name::Vec());
}
</code></pre>
<p>Producing:</p>
<blockquote>
<p>bar(const test&)<br />
bar(const double&)<br />
bar(const Vec&)</p>
</blockquote>
<p>What compiler are you using?</p>
http://stackoverflow.com/questions/1381089/multiple-fork-concurrency/1381136#13811364Answer by Greg Rogers for Multiple fork() ConcurrencyGreg Rogers2009-09-04T19:32:11Z2009-09-04T19:32:11Z<p>When you fork off processes the WILL be running concurrently. But note that unless you have enough available idle processors, they might not actually be executing concurrently, which shouldn't really matter...</p>
<p>Your second paragraph makes it seem like you aren't understanding how fork works, you have to check the return code to see if you are in the parent or in the forked process. So you would have the parent run a loop to fork off 10 processes, and in the children you do whatever you wanted to do concurrently.</p>
http://stackoverflow.com/questions/1369416/a-little-problem-with-bst-implementation/1369592#13695921Answer by Greg Rogers for A little problem with BST implementationGreg Rogers2009-09-02T19:13:25Z2009-09-02T19:13:25Z<p>It is clear that you can't make it static - if you did, then two different trees with two different comparison functions wouldn't work (the later one would overwrite the global).</p>
<p>It is also clear that it shouldn't be per node - you would be duplicating the exact same functionality, with a memory hit per node, for no reason - all the nodes in a single tree would have the same comparer.</p>
<p>So the best choice is to make it part of the container. As to your objection that nodes wouldn't be able to compare themselves, why does that matter? The only time you will ever be comparing two nodes is in the context of an operation on the container, in which case you would have the comparer object handy.</p>
http://stackoverflow.com/questions/1223962/container-with-two-indexes-or-a-compound-index/1224132#12241322Answer by Greg Rogers for Container with two indexes (or a compound index)Greg Rogers2009-08-03T19:19:18Z2009-08-03T19:19:18Z<p><a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/multi%5Findex/doc/index.html" rel="nofollow">Boost::Multi-Index</a> has this exact functionality if you can afford the boost dependency (header only). You would use a <code>random_access</code> index for the array-like index, and either <code>hashed_unique</code>, <code>hashed_non_unique</code>, <code>ordered_unique</code>, or <code>ordered_non_unique</code> (depending on your desired traits) with a functor that compares Identifier and Context together.</p>
http://stackoverflow.com/questions/1161182/c-w-static-template-methods/1161244#11612440Answer by Greg Rogers for C++ w/ static template methodsGreg Rogers2009-07-21T19:28:30Z2009-07-21T19:28:30Z<p>You can always implement it the same way you would in Java - pass in an abstract class ISearchable that has a search() method, and override that in LinearSearch and BinarySearch...</p>
<p>You can also use a function pointer (which would be my preffered solution) or a boost::function, or templatize your function and pass in a functor.</p>
http://stackoverflow.com/questions/1144264/c-member-pointer-initialised/1144404#11444048Answer by Greg Rogers for C++: member pointer initialised?Greg Rogers2009-07-17T16:35:38Z2009-07-17T17:37:30Z<p>Here is the relevant passage fromt he standard:</p>
<blockquote>
<p>12.6.2 Initializing bases and members [class.base.init]</p>
<p>4 If a given nonstatic data member or
base class is not named by a mem-<br />
initializer-id in the
mem-initializer-list, then</p>
<p>--If the entity is a nonstatic data
member of (possibly cv-qualified)
class type (or array thereof) or a base class, and the entity class
is a non-POD class, the entity is default-initialized (<em>dcl.init</em>).
If the entity is a nonstatic data member of a const-qualified type,
the entity class shall have a user-declared default constructor.</p>
<p>--<strong>Otherwise, the entity is not
initialized</strong>. If the entity is of
const-qualified type or reference type, or of a (possibly cv-quali-
fied) POD class type (or array thereof) containing (directly or
indirectly) a member of a const-qualified type, the program is
ill-
formed.</p>
<p>After the call to a constructor for
class X has completed, if a member</p>
<p>of X is neither specified in the
constructor's mem-initializers, nor<br />
default-initialized, nor initialized
during execution of the body of<br />
the constructor, the member has
indeterminate value.</p>
</blockquote>
http://stackoverflow.com/questions/1133955/why-would-a-virtual-function-be-private/1134007#113400716Answer by Greg Rogers for Why would a virtual function be private?Greg Rogers2009-07-15T20:55:37Z2009-07-15T20:55:37Z<p>See <a href="http://www.gotw.ca/publications/mill18.htm" rel="nofollow">this Herb Sutter article</a> as to why you'd want to do such a thing.</p>
http://stackoverflow.com/questions/1121791/optimisation-of-division-in-gcc/1122073#11220733Answer by Greg Rogers for Optimisation of division in gccGreg Rogers2009-07-13T21:08:03Z2009-07-13T21:08:03Z<p>I'm guessing its just the severely old GCC version you are running. The oldest compiler I have on my machine - gcc-4.1.2, performs the fast way with both the non-const and the wrap versions (and does so at only -O1).</p>
http://stackoverflow.com/questions/147391/using-boostrandom-as-the-rng-for-stdrandomshuffle1Using boost::random as the RNG for std::random_shuffleGreg Rogers2008-09-29T03:24:14Z2009-07-11T19:27:28Z
<p>I have a program that uses the mt19937 random number generator from boost::random. I need to do a random_shuffle and want the random numbers generated for this to be from this shared state so that they can be deterministic with respect to the mersenne twister's previously generated numbers.</p>
<p>I tried something like this:</p>
<pre><code>void foo(std::vector<unsigned> &vec, boost::mt19937 &state)
{
struct bar {
boost::mt19937 &_state;
unsigned operator()(unsigned i) {
boost::uniform_int<> rng(0, i - 1);
return rng(_state);
}
bar(boost::mt19937 &state) : _state(state) {}
} rand(state);
std::random_shuffle(vec.begin(), vec.end(), rand);
}
</code></pre>
<p>But i get a template error calling random_shuffle with rand. However this works:</p>
<pre><code>unsigned bar(unsigned i)
{
boost::mt19937 no_state;
boost::uniform_int<> rng(0, i - 1);
return rng(no_state);
}
void foo(std::vector<unsigned> &vec, boost::mt19937 &state)
{
std::random_shuffle(vec.begin(), vec.end(), bar);
}
</code></pre>
<p>Probably because it is an actual function call. But obviously this doesn't keep the state from the original mersenne twister. What gives? Is there any way to do what I'm trying to do without global variables?</p>
http://stackoverflow.com/questions/1104035/generic-iterator-in-c/1104614#11046142Answer by Greg Rogers for "Generic" iterator in c++Greg Rogers2009-07-09T15:25:20Z2009-07-09T15:25:20Z<p>If you don't want to templatize your add_all_msgs function, you can use <a href="http://stlab.adobe.com/classadobe%5F1%5F1any%5F%5Fiterator.html" rel="nofollow">adobe::any_iterator</a>:</p>
<pre><code>typedef adobe::any_iterator<Message, std::input_iterator_tag> any_message_iterator;
void add_all_msgs(any_message_iterator begin, any_message_iterator end);
</code></pre>
http://stackoverflow.com/questions/1064207/data-structures-for-scheduling-workflow/1064365#10643651Answer by Greg Rogers for data structures for scheduling workflow?Greg Rogers2009-06-30T15:31:20Z2009-06-30T15:31:20Z<p>You don't have any way for the task object to notify you when it changes from WAITING to READY except polling it, so the WAITING and READY queues could really just be one. You can just loop around it calling executeStep() on each one in turn. If as a return value from executeStep() you receive DONE, then you remove it from that queue and stick it on the DONE queue and forget about it.</p>
<p>If you wanted to give "more priority" towards READY objects and attempt to run through all possible READY objects before wasting any resources polling WAITING you can maintain 3 queues like you said and only process the WAITING queue when you have nothing in the READY queue.</p>
<p>I personally would spend some effort to eliminate the polling of the state, and instead define an interface that the object could use to notify your scheduler when a state changes.</p>
http://stackoverflow.com/questions/1032602/template-ing-a-for-loop-in-c/1032936#10329360Answer by Greg Rogers for template-ing a for loop in C++?Greg Rogers2009-06-23T14:32:35Z2009-06-23T14:32:35Z<p>If you are willing to modify the syntax a bit you can do something like this:</p>
<pre><code>template <int i, int ubound>
struct OuterFor {
void operator()() {
InnerFor<i, 0, J>()();
OuterFor<i + 1, ubound>()();
}
};
template <int ubound>
struct OuterFor <ubound, ubound> {
void operator()() {
}
};
</code></pre>
<p>In InnerFor, i is the outer loops counter (compile time constant), j is the inner loops counter (initially 0 - also compile time constant), so you can evaluate row as a compile time template.</p>
<p>Its a bit more complicated, but as you say, row(), col(), and f() are your complicated parts anyways. At least try it and see if the performance is worth it. It may be worth it to investigate other options to simplify your row(), etc functions.</p>
http://stackoverflow.com/questions/90272/game-programming-library-c/90637#90637Comment by Greg Rogers on Game Programming Library C++Greg Rogers2009-11-24T21:59:31Z2009-11-24T21:59:31Z$350 isn't particularly expensive considering the immense amount of time spent actually creating a game...http://stackoverflow.com/questions/1766535/bit-hack-round-off-to-multiple-of-8/1766566#1766566Comment by Greg Rogers on Bit Hack - Round off to multiple of 8Greg Rogers2009-11-19T21:16:03Z2009-11-19T21:16:03Zrounding an integer n down to any integer m can be achieved with <code>(n/m)*m</code>http://stackoverflow.com/questions/1736146/why-is-exception-handling-bad/1736180#1736180Comment by Greg Rogers on Why is exception handling bad?Greg Rogers2009-11-16T20:11:02Z2009-11-16T20:11:02Zhowever, exceptions aren't useful without RAII (or some other automatic resource management).http://stackoverflow.com/questions/1717308/how-stl-vector-gives-random-access/1717550#1717550Comment by Greg Rogers on How stl vector gives random accessGreg Rogers2009-11-11T20:38:44Z2009-11-11T20:38:44Znote that <code>1+sqrt(5)/2</code> is larger than 2...http://stackoverflow.com/questions/1689486/mysterious-pointer-related-multithreading-slowdownComment by Greg Rogers on Mysterious pointer-related multithreading slowdownGreg Rogers2009-11-06T19:41:58Z2009-11-06T19:41:58ZCan you post the two versions of the data structures you are comparing?http://stackoverflow.com/questions/1645326/non-blocking-thread-safe-queue-in-c/1645365#1645365Comment by Greg Rogers on non-blocking thread-safe queue in C++?Greg Rogers2009-10-29T18:15:13Z2009-10-29T18:15:13ZThe hazard pointer based queue is another option - it allows free'ing unused memory back to the OS, instead of having to maintain it forever in a free list. <a href="http://www.research.ibm.com/people/m/michael/ieeetpds-2004.pdf" rel="nofollow">research.ibm.com/people/m/…</a> Also see Relacy for sanity checking your lock free algorithm: <a href="http://groups.google.com/group/relacy" rel="nofollow">groups.google.com/group/relacy</a>http://stackoverflow.com/questions/1625817/bug-in-the-codeComment by Greg Rogers on Bug in the codeGreg Rogers2009-10-26T16:44:20Z2009-10-26T16:44:20ZBring that up on meta... As it is he can always submit a new (hopefully better) question.http://stackoverflow.com/questions/1615676/is-there-a-cpu-that-can-change-variables-simultaneouslyComment by Greg Rogers on Is there a CPU that can change variables simultaneously?Greg Rogers2009-10-23T21:37:57Z2009-10-23T21:37:57Z@Crashworks - Actually, modern CPUs are almost always superscalar, which means they can execute multiple instructions per clock cycle (mainly depending on dependencies between instructions and available functional units).http://stackoverflow.com/questions/1591018/stdvectorclear-in-constructor-and-destructor/1591038#1591038Comment by Greg Rogers on std::vector::clear() in constructor and destructor Greg Rogers2009-10-19T21:04:17Z2009-10-19T21:04:17ZIf anything, you want to know that you deleted the same pointer twice. It is better to fail loudly (and find out about it) than accidentally succeed (masking a bug that will come back to bite you)http://stackoverflow.com/questions/1574910/c-map-object-not-growing-when-members-added/1574927#1574927Comment by Greg Rogers on C++ map object not growing when members addedGreg Rogers2009-10-15T21:50:01Z2009-10-15T21:50:01Z@AndreyT: I'm not sure where you got that requirement, but <code>std::map<Key, Value>::value_type</code> is typedef'ed to be <code>std::pair<const Key, Value></code>, so it really isn't required to be assignable.http://stackoverflow.com/questions/1567519/synchronized-producer-consumer-with-circular-bufferComment by Greg Rogers on Synchronized Producer & Consumer with Circular bufferGreg Rogers2009-10-14T19:21:20Z2009-10-14T19:21:20ZYou can just copy out the data that the consumer needs, and have it do stuff with the copy, then the original in the buffer is free to be overwritten. What you'd then be overwriting would be the thing it would have next consumed (the oldest item currently in the buffer).http://stackoverflow.com/questions/1561183/c-operator-overloading-understanding-the-google-style-guide/1561192#1561192Comment by Greg Rogers on C++ operator overloading, understanding the Google style guideGreg Rogers2009-10-13T17:17:19Z2009-10-13T17:17:19ZThe other advantage of functors is that they can be inlined into the sorting code, whereas function pointers must always make the function call. http://stackoverflow.com/questions/1532819/algorithm-efficient-way-to-remove-duplicate-integers-from-an-array/1532902#1532902Comment by Greg Rogers on Algorithm: efficient way to remove duplicate integers from an arrayGreg Rogers2009-10-07T17:45:47Z2009-10-07T17:45:47ZIt doesn't say you can't sort the array once you get it... Without using O(N) external memory sorting is the only way to do it in O(N log N) or better.http://stackoverflow.com/questions/1526531/wildcard-search-inside-a-boost-multiindex-data-structure/1526909#1526909Comment by Greg Rogers on Wildcard search inside a Boost.MultiIndex data structure?Greg Rogers2009-10-06T19:28:14Z2009-10-06T19:28:14Zbut you aren't looking for exact "foo" matches, you are looking for strings that begin with "foo", which goes past upper_bound.http://stackoverflow.com/questions/1511101/what-is-easiest-way-to-create-multithreaded-applications-with-c-c/1511110#1511110Comment by Greg Rogers on What is easiest way to create multithreaded applications with C/C++?Greg Rogers2009-10-02T19:01:18Z2009-10-02T19:01:18Zpthreads are supported on windows: <a href="http://sourceware.org/pthreads-win32/" rel="nofollow">sourceware.org/pthreads-win32</a> All threading APIs are primitive... If you want higher level than you can use a threadpool, or actors, or some other abstraction over threads.