User Matt J - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T10:32:58Zhttp://stackoverflow.com/feeds/user/18528http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1364603/performance-of-comparisons-in-c-foo-0-vs-foo-0/1364623#13646230Answer by Matt J for Performance of comparisons in C++ ( foo >= 0 vs. foo != 0 )Matt J2009-09-01T20:59:47Z2009-09-01T20:59:47Z<p>In general, they should be equivalent (both are usually implemented in single-cycle instructions/micro-ops). Your compiler may do some strange special-case optimization that is difficult to reason about from the source level, which may make either one slightly faster. Also, equality testing is more energy-efficient than inequality testing (>), though the system-level effect is so small as to not merit discussion.</p>
http://stackoverflow.com/questions/1272828/getting-all-the-permutations-in-an-array/1272875#12728751Answer by Matt J for Getting all the permutations in an arrayMatt J2009-08-13T15:55:31Z2009-08-13T15:55:31Z<p>Since ordering does not matter, these are actually combinations and not permutations. In any case, there is some sample code <a href="http://www.codeproject.com/KB/recipes/Combinatorics.aspx" rel="nofollow">here</a> (you want the section entitled "Combinations (i.e., without Repetition)".</p>
http://stackoverflow.com/questions/1183013/spiral-algorithm-in-c/1183030#11830304Answer by Matt J for Spiral Algorithm in C#Matt J2009-07-25T20:53:40Z2009-08-01T20:53:20Z<p>Traverse the array starting from element (0,0) (top-left), and heading right (incrementing your column index). Keep a running counter that increments each time you fill an element, as well as upper and lower bounds on the rows and columns you have yet to fill. For an M-row by N-column matrix, your row bounds should be 0 and (M-1), and your column bounds 0 and (N-1). Go right until you hit your upper column bound, decrement your upper column bound, go down until you hit your upper row bound, decrement your upper row bound, go left until you hit your lower column bound, increment your lower column bound, go up until you hit your lower row bound, increment your lower bound, and repeat until your upper and low row or column bounds are equal (or until your running count is M*N).</p>
http://stackoverflow.com/questions/1205041/how-to-optimize-a-c-for-loop/1205071#12050710Answer by Matt J for How to optimize a C for loop?Matt J2009-07-30T07:56:06Z2009-07-30T07:56:06Z<p>You can try unrolling the loop. The compiler might do this for you, but if not, and you <em>really</em> need the performance, do it yourself. I assume you're doing something like calling <code>function(.., i, j, ..)</code> each iteration, so just replace the loops with:</p>
<pre><code>function(.., 0, 0, ..)
...
function(.., 0, 7, ..)
function(.., 1, 0, ..)
...
function(.., 7, 7, ..)
</code></pre>
<p>With some more context (C source), there might be more helpful things to do. Frankly though, I would be shocked if 2 stack-allocated counters (many modern processors have special accelerator hardware to access the top bit of the stack nearly as quickly as registers) cause a noticeable problem in a non-toy program.</p>
http://stackoverflow.com/questions/1156175/algorithm-for-bfs-traveral-of-an-acylic-directed-graph/1156213#11562134Answer by Matt J for Algorithm for BFS traveral of an acylic directed graphMatt J2009-07-20T22:03:17Z2009-07-20T22:03:17Z<p>If I am reading the question correctly, it looks like you want a <a href="http://en.wikipedia.org/wiki/Topological%5Fsorting" rel="nofollow">topological sort</a>. The most efficient algorithm (O(V+E)) for doing this was proposed by <a href="http://en.wikipedia.org/wiki/Robert%5FTarjan" rel="nofollow">Tarjan</a>, and a Python implementation can be found <a href="http://www.bitformation.com/art/python%5Ftoposort.html" rel="nofollow">here</a>.</p>
<p>Off-topic, but it seems as though your package dependency analogy is reversed; I would think that "A depends on B" would imply "B->A", but of course this will not change the structure of the tree, merely reverse it.</p>
http://stackoverflow.com/questions/1114107/is-this-game-physics/1114144#11141441Answer by Matt J for Is this game physics?Matt J2009-07-11T17:00:48Z2009-07-11T17:00:48Z<p>The first link is not physics at all; all he's doing is writing code to move triangles along a path with waypoints; the triangles are defined to move along that set path at constant velocity, and they do not interact with the world in any way. The tutorial has some trigonometry in it that is necessary for doing game physics, and you could even say that the bouncing ball demo is a simulator for perfectly-elastic collisions. However, perfectly-elastic collisions between spheres and planes is arguably one of the simplest of many interactions you'll need to model in any reasonably-interesting game.</p>
http://stackoverflow.com/questions/1112343/how-do-i-capture-sigint-in-python/1112350#111235012Answer by Matt J for How do I capture SIGINT in Python?Matt J2009-07-10T22:52:48Z2009-07-10T22:52:48Z<p>Register your handler with <code>signal.signal</code> like this:</p>
<pre><code>#! /usr/bin/python
import signal
import sys
def signal_handler(signal, frame):
print 'You pressed Ctrl+C!'
sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)
print 'Press Ctrl+C'
while 1:
continue
</code></pre>
<p>Code adapted from <a href="http://www.linuxjournal.com/article/3946" rel="nofollow">here</a>.</p>
<p>More documentation on <code>signal</code> can be found <a href="http://docs.python.org/library/signal.html" rel="nofollow">here</a>. </p>
http://stackoverflow.com/questions/1107870/is-gij-gnu-interpreter-for-java-stable-enough-for-commercial-use/1107899#11078993Answer by Matt J for Is GIJ (GNU Interpreter for Java) stable enough for commercial use?Matt J2009-07-10T05:48:41Z2009-07-10T05:48:41Z<p><code>gij</code> does OK for Java 1.4 code, but if you're writing something from scratch, there's a good chance you want to use Java 5 and possibly Java 6 features. In particular, Java 5 offers generics, autoboxing/unboxing, and <a href="http://java.sun.com/j2se/1.5.0/docs/relnotes/features.html" rel="nofollow">a slew</a> of other helpful language and class library features. The Sun JRE is not onerous at all to install, so unless you're developing a very small app where the Java 5 language features wouldn't help much, or you have some other reason for wanting to stick with 1.4, I would just bite the bullet and install the newest JRE from <a href="http://www.java.com/en/download/manual.jsp" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1015449/regex-like-syntax-or-cfg-for-generating-cartesian-product-of-concatenated-string0Regex-like syntax or CFG for generating cartesian product of concatenated string variables and literalsMatt J2009-06-18T22:04:23Z2009-06-18T23:06:27Z
<p>I am writing a simulator, and would like to run studies by invoking a lot of instances of the simulator, using different sets of command-line arguments. I have read <a href="http://stackoverflow.com/questions/205411/random-string-that-matches-a-regexp">this</a> question and several others, and they seem close, but I'm actually not looking for random data fulfilling a particular regex, I would like the set of <em>all</em> strings that match the regex. An example input file would look something like this:</p>
<pre><code>myprogram.{version1|version2} -arg1 {1|2|4} {-arg2|}
</code></pre>
<p>or:</p>
<pre><code>myprogram.{0} -arg1 {1} {2}
0: "version1" "version2"
1: "1" "2" "4"
2: "-arg2" ""
</code></pre>
<p>and would produce:</p>
<pre><code>myprogram.version1 -arg1 1 -arg2
myprogram.version1 -arg1 1
myprogram.version1 -arg1 2 -arg2
myprogram.version1 -arg1 2
myprogram.version1 -arg1 4 -arg2
myprogram.version1 -arg1 4
myprogram.version2 -arg1 1 -arg2
myprogram.version2 -arg1 1
myprogram.version2 -arg1 2 -arg2
myprogram.version2 -arg1 2
myprogram.version2 -arg1 4 -arg2
myprogram.version2 -arg1 4
</code></pre>
<p>I would imagine something like this already exists, I just don't know the correct term to search for. Any help would be much appreciated. I can implement an abstract technique or algorithm myself if need be, but if it's a pre-existing tool I would prefer it to be free (at least as in beer) and run on Linux.</p>
<p>I know I am probably leaving some details out, and can be more specific about the appropriate things if necessary, rather than inundate people with a lot of detail up front. It is entirely possible that I am going about this the wrong way, and I am welcome to all solutions, even if they solve my problem in a different way.</p>
<p>Most importantly, this solution should not require me to write any extra parsing code if I want to add more argument options to the "cross-product" of strings I generate. I already have a Perl script that does this with a set of nested <code>for</code> loops over each "variable" that must change every time I change the number or nature of variables.</p>
http://stackoverflow.com/questions/603828/java-5-to-java-1-4-source-code-backporting-tool/603932#6039324Answer by Matt J for Java 5 to Java 1.4 Source Code Backporting ToolMatt J2009-03-02T20:49:44Z2009-06-18T21:32:25Z<p><a href="https://glazedlists.dev.java.net/servlets/ProjectDocumentList?folderID=4541&expandFolder=4541&folderID=4540" rel="nofollow">Declawer</a> should do what you want. There's some brief info about it <a href="http://sites.google.com/site/glazedlists/Home/declawer" rel="nofollow">here</a>, but basically what it does is run through a directory of Java 1.5 source and output Java 1.4 equivalent source. It doesn't support all 1.5 features. For example, the enhanced for loop and auto(un)boxing aren't there. It will strip out generics though, and that should get you a substantial portion of the way there. The source it generates is a little funky, but not too bad. It's built on top of <code>javac</code>, it basically just tells it to spit out the AST as Java source instead of bytecode.</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/994593/how-to-do-an-integer-log2-in-c/994709#9947093Answer by Matt J for How to do an integer log2() in C++?Matt J2009-06-15T06:24:13Z2009-06-15T06:24:13Z<p>If you are on a recent-ish x86 or x86-64 platform (and you probably are), use the <code>bsr</code> instruction which will return the position of the highest set bit in an unsigned integer. It turns out that this is exactly the same as log2(). Here is a short C or C++ function that invokes <code>bsr</code> using inline ASM:</p>
<pre><code>#include <stdint.h>
static inline uint32_t log2(const uint32_t x) {
uint32_t y;
asm ( "\tbsr %1, %0\n"
: "=r"(y)
: "r" (x)
);
return y;
}
</code></pre>
http://stackoverflow.com/questions/980170/how-to-create-a-lightweight-c-code-sandbox/985253#9852535Answer by Matt J for How to create a lightweight C code sandbox?Matt J2009-06-12T06:25:42Z2009-06-12T16:24:56Z<p>I think you would get a lot out of reading about some of the implementation concerns and choices Google made when designing <a href="http://code.google.com/p/nativeclient/" rel="nofollow">Native Client</a>, a system for executing x86 code (safely, we hope) in the browser. You may need to do some source-rewriting or source-to-source compilation to <em>make</em> the code safe if it's not, but you should be able to rely on the NaCL sandbox to catch your generated assembly code if it tries to do anything too funky. </p>
http://stackoverflow.com/questions/972837/converting-a-parallel-program-to-a-cluster-program-from-openmp-to/972876#9728761Answer by Matt J for Converting a parallel program to a cluster program. From OpenMP to ?Matt J2009-06-09T22:47:07Z2009-06-09T22:58:50Z<p><a href="http://software.intel.com/en-us/articles/cluster-openmp-for-intel-compilers/" rel="nofollow">Intel</a> has an implementation of OpenMP that works with their C++ and Fortran compilers for x86 64-bit clusters. You can get a 30-day eval version of these compilers for free. Other than that, Zifre is mostly right. If you are concerned with scalability, bite the bullet and write your parallel program in another programming model (MPI, CUDA, Cilk, ...) which is designed with distributed systems in mind. If you provide a little more information about your application, we may be able to provide more useful guidance on that front.</p>
http://stackoverflow.com/questions/963129/there-is-any-c-bitwise-shift-operator-that-moves-the-overflown-bits-to-the-other/963152#9631521Answer by Matt J for There is any C# bitwise shift operator that moves the overflown bits to the other tip of the variable?Matt J2009-06-08T01:05:41Z2009-06-08T01:05:41Z<p>This is called a bitwise rotation. Other languages have it, but C# does not. See <a href="http://stackoverflow.com/questions/812022/c-bitwise-rotate-left-and-rotate-right">this question</a> for a little more detail, but the gist of it is that your current approach is about as good as you can do.</p>
http://stackoverflow.com/questions/191838/beginner-level-embedded-systems-projects8Beginner-level Embedded Systems Projects?Matt J2008-10-10T15:21:41Z2009-06-06T12:47:28Z
<p>A student of mine came to me this morning and asked for some ideas for an embedded systems (ideally hardware+software design) project to be completed in the next 6 months or so. He's a freshman, and inexperienced, but has the motivation to learn if pointed in the right direction. The purpose of completing this project, besides getting his feet wet in Electrical/Computer Engineering and Computer Science, is to make his resume more attractive in terms of snagging an internship in Summer '09.</p>
<p>My question is:</p>
<ol>
<li><p>What are some good general resources to understand simple hardware, a microcontroller, and the basics of what firmware/software is, given little to no experience in any of the above? My own background is somewhat unhelpful here, as I learned a lot through both formal training (which he's interested in, but wants to get started now) and through the internship I got <em>my</em> freshman year through nepotism ;-) (which he wants to do, but there's a chicken-and-egg problem)</p></li>
<li><p>What are some interesting project ideas of the appropriate scope?</p></li>
</ol>
<p>Some initial ideas:</p>
<ul>
<li>A Jeopardy-style game that would light up an LED, and the player who pressed his/her button first is the winner, and perhaps the microcontroller could keep score on a couple 7-segment displays.</li>
<li>A tone generator (user sets DIP switches (or more ambitiously, presses keys on a PS2 keyboard) to set a frequency), and the microcontroller uses a D/A converter to output a sinusoid of that frequency</li>
<li>Some kind of small sensor (maybe a temperature sensor for his dorm room that served up the results as an RSS feed). The web-based aspect of this project would be made significantly easier with a RabbitCore from <a href="http://www.rabbitsemi.com" rel="nofollow">Rabbit Semiconductor</a>.</li>
</ul>
<p>All the suggestions as to microcontroller kits are great! I would really appreciate additional project ideas (i.e. "The student should design X) as well. Thanks!</p>
http://stackoverflow.com/questions/935463/at-what-point-does-the-segfault-occur/935534#9355340Answer by Matt J for At what point does the segfault occur?Matt J2009-06-01T16:15:26Z2009-06-01T16:15:26Z<p>More generally, you can figure out where the segmentation fault occurs in Linux systems by using a debugger. For example, to use gdb, compile your program with debugging symbols by using the -g flag, e.g.:</p>
<pre><code>gcc -g segfault.c -o segfault
</code></pre>
<p>Then, invoke gdb with your program and any arguments using the --args flag, .g.:</p>
<pre><code>gdb --args ./segault myarg1 myarg2 ...
</code></pre>
<p>Then, when the debugger starts up, type <code>run</code>, and your program should run until it receives SIGSEGV, and should tell you where it was in the source code when it received that signal.</p>
http://stackoverflow.com/questions/749180/default-values-in-a-c-struct/749211#7492115Answer by Matt J for Default values in a C Struct.Matt J2009-04-14T20:22:08Z2009-05-28T05:15:15Z<p><code><stdarg.h></code> allows you to define variadic functions (which accept an indefinite number of arguments, like <code>printf()</code>). I would define a function which took an arbitrary number of pairs of arguments, one which specifies the property to be updated, and one which specifies the value. Use an <code>enum</code> or a string to specify the name of the property.</p>
http://stackoverflow.com/questions/904336/what-did-you-develop-using-a-microcontroller/904411#9044114Answer by Matt J for What did you develop using a microcontroller?Matt J2009-05-24T18:45:41Z2009-05-24T18:45:41Z<p>We made an ultra-short baseline (USBL) acoustic pinger locator for an autonomous underwater vehicle, as a project for an embedded systems class. Essentially the problem is to figure out which direction a sound (a ~1ms ping at a known-but-variable frequency every 1s or so) is coming from using three passive underwater microphones (hydrophones) spaced less than an inch apart. The vehicle was being constructed for the <a href="http://www.auvsi.org/competitions/water.cfm" rel="nofollow">AUVSI competition</a>, and the vehicle would have to use the output of this system to navigate to the beacon and surface (within a few feet of the actual pinger). The vast majority of the effort went into the signal conditioning hardware, PCB design, and so forth, but once we had converted the analog hydrophone waveforms to filtered square waves, we used an <a href="http://www.trenz-electronic.de/products/fpga-boards/trenz-electronic/standard-micromodules.html" rel="nofollow">FPGA board</a> with an embedded <a href="http://en.wikipedia.org/wiki/MicroBlaze" rel="nofollow">Microblaze</a> soft core. We designed some custom hardware in Verilog to time the pairwise time-of-arrival disparity between all 3 hydrophones for every period of the chirp, and interfaced it with the Microblaze on the FPGA. The Microblaze then did the trigonometry to convert these times differences into estimated angles, and averaged many estimates in an intelligent way to come up with a single pretty-good estimate every chirp, which was then communicated to the vehicle's main processor via a serial port.</p>
<p>The development environment for the FPGA was a mixture between Xilinx ISE for the hardware portion of it, and <a href="http://www.xilinx.com/ise/embedded/edk%5Fdocs.htm" rel="nofollow">Xilinx EDK</a> for the software that ran on the Microblaze (it included a GCC-based toolchain for compilation).</p>
<p>Students can get pretty good prices on Xilinx ISE and EDK, but be prepared to pay a couple hundred dollars if your company/university doesn't already have it. Hardware-wise, another $400 should cover the FPGA board plus a spare, costs to have a few copies of the PCB fabbed, parts to populate the boards, etc. This of course assumes that you have the necessary soldering irons/reflow ovens (you can <a href="http://www.instructables.com/id/Toaster-Oven-Reflow-Soldering-BGA/" rel="nofollow">use a toaster oven</a> (we did)), instruments (a power supply, multimeter, oscilloscope, and waveform generator), etc.</p>
<p>The full report can be found <a href="http://www.eecs.berkeley.edu/~waterman/papers/apls.pdf" rel="nofollow">here</a>.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/882834/what-is-the-quickest-way-to-find-the-maximum-of-two-floats-in-c/882886#8828860Answer by Matt J for What is the quickest way to find the maximum of two floats in C++?Matt J2009-05-19T13:48:19Z2009-05-19T14:15:51Z<p>It is common to <code>#define</code> either <em>b</em> or <em>c</em> as a macro, and use that throughout your code. Note that this only works in most cases, and will die if you pass in an <em>x</em> or <em>y</em> argument modified by a non-idempotent operator or function call with side effects. For example:</p>
<pre><code>#define MAX(x,y) (((x) < (y)) ? (y) : (x))
...
MAX(i++, ++j); //won't work properly, the ++'s will get executed twice.
MAX(changeKSomehow(k), changeLSomehow(L)); //won't work, the functions will get called twice.
</code></pre>
<p>It turns out that std::max, at least for GNU libstdc++, is implemented nearly identically, and uses the <code>inline</code> hint. The compiler should be able to take the hint when appropriate (when the < operator takes few enough instructions not to cause a huge amount of I$ pressure if inlined).</p>
http://stackoverflow.com/questions/880850/laws-of-computer-science-and-programming/881120#8811206Answer by Matt J for Laws of Computer Science and ProgrammingMatt J2009-05-19T05:39:56Z2009-05-19T05:39:56Z<p><a href="http://en.wikipedia.org/wiki/Gustafson%27s%5Flaw" rel="nofollow">Gustafson's Law</a> ameliorates the parallelism doom-and-gloom of Amdahl's Law by stating that the problem size tends to increase in time, allowing linear application-level speedups even in the face of imperfect parallelization. The linked Wikipedia article has a much better explanation than I can muster, but here's an example:</p>
<blockquote>
<p><strong>Amdahl's Law</strong> approximately suggests: “
Suppose a car is traveling between
two cities 60 miles apart, and has
already spent one hour traveling half
the distance at 30 mph. No matter how
fast you drive the last half, it is
impossible to achieve 90 mph average
before reaching the second city. Since
it has already taken you 1 hour and
you only have a distance of 60 miles
total; going infinitely fast you would
only achieve 60 mph. ”</p>
<p><strong>Gustafson's Law</strong> approximately states:
“ Suppose a car has already been
traveling for some time at less than
90mph. Given enough time and distance
to travel, the car's average speed can
always eventually reach 90mph, no
matter how long or how slowly it has
already traveled. For example, if the
car spent one hour at 30 mph, it could
achieve this by driving at 120 mph for
two additional hours, or at 150 mph
for an hour, and so on.</p>
</blockquote>
http://stackoverflow.com/questions/880850/laws-of-computer-science-and-programming/880973#8809734Answer by Matt J for Laws of Computer Science and ProgrammingMatt J2009-05-19T04:26:53Z2009-05-19T05:37:29Z<p><a href="http://en.wikipedia.org/wiki/Little%27s%5Flaw" rel="nofollow">Little's Law</a> (queueing theory):</p>
<blockquote>
<p>The long-term average number of customers in a stable system L (known
as the Offered load), is equal to the
long-term average arrival rate, λ,
multiplied by the long-term average
time a customer spends in the system</p>
</blockquote>
http://stackoverflow.com/questions/866849/how-can-i-get-the-best-accurate-result/866872#8668725Answer by Matt J for How can I get the best accurate result?Matt J2009-05-15T03:38:04Z2009-05-15T03:38:04Z<p>I would either:</p>
<ul>
<li>Cast to 64 bits, if that will work for your ranges of a, b, and c.</li>
<li>Use an infinite precision library like <a href="http://gmplib.org/" rel="nofollow">GMP</a></li>
<li>Cast to a <code>float</code> or <code>double</code> and back, if you find those results acceptable.</li>
</ul>
http://stackoverflow.com/questions/864473/why-do-double-and-float-exist/864500#8645002Answer by Matt J for Why do double and float exist?Matt J2009-05-14T16:56:24Z2009-05-14T16:56:24Z<p>Floating-point arithmetic arose because it is the only way to operate on a large range of non-integer numbers with a reasonable amount of hardware cost. Infinite-precision arithmetic is implemented in several languages (Python, LISP, etc..) and libraries (Java's BigNum, GMP, etc..), and is an alternative for folks who need more accuracy (e.g. the finance industry). For most of the rest of us, who deal with medium-size numbers, <code>floats</code> or certainly <code>doubles</code> are more than accurate enough. The two different floating-point datatypes (corresponding to IEEE 754 single- and double-precision, respectively) because a single-precision floating-point unit has much better area, power, and speed properties than a double-precision unit, and so hardware designers and programmers should make appropriate tradeoffs to exploit these different properties.</p>
http://stackoverflow.com/questions/82415/prefetch-instructions-on-arm/801069#8010690Answer by Matt J for Prefetch instructions on ARMMatt J2009-04-29T06:06:37Z2009-04-29T06:06:37Z<p>It is not outside the realm of possibility that other optimizations like <a href="http://en.wikipedia.org/wiki/Software%5Fpipelining" rel="nofollow">software pipelining</a> and <a href="http://en.wikipedia.org/wiki/Loop%5Funwinding" rel="nofollow">loop unrolling</a> may achieve the same effect as your prefetching idea (hiding the latency of the loads by overlapping it with useful computation), but without the extra instruction-cache pressure caused by the extra instructions. I would even go so far as to say that this is the case more often than not, for tight inner loops that tend to have few instructions and little control flow. Is your compiler doing these types of traditional optimizations instead. If so, it may be worth looking at the pipeline diagram to develop a more detailed cost model of how your processor works, and evaluate more quantitatively whether prefetching would help.</p>
http://stackoverflow.com/questions/759201/representing-integers-in-doubles/759224#7592242Answer by Matt J for Representing integers in doublesMatt J2009-04-17T06:09:37Z2009-04-17T06:09:37Z<p>Exactly what the range is that you can represent exactly depends on a lot of factors in your implementation, but you can lower-bound it by saying that, if the exponent field is set to 0, you can exactly represent integers up to the width of your mantissa field (assuming a sign bit). For IEEE 754 double-precision, this means you can represent 52-bit numbers exactly. In general, your mantissa will be over half the width of the overall structure.</p>
http://stackoverflow.com/questions/758673/uses-for-multiple-levels-of-pointer-dereferences/758677#7586771Answer by Matt J for Uses for multiple levels of pointer dereferences?Matt J2009-04-17T01:27:19Z2009-04-17T01:58:45Z<p>N-dimensional dynamically-allocated arrays, where N > 3, require three or more levels of indirection in C.</p>
http://stackoverflow.com/questions/758018/path-to-binary-in-c/758054#7580543Answer by Matt J for Path to binary in CMatt J2009-04-16T21:06:51Z2009-04-16T21:06:51Z<p><a href="http://www.flipcode.com/archives/Path%5FTo%5FExecutable%5FOn%5FLinux.shtml" rel="nofollow">Here's</a> an example that might be helpful for Linux systems:</p>
<pre><code>/*
* getexename - Get the filename of the currently running executable
*
* The getexename() function copies an absolute filename of the currently
* running executable to the array pointed to by buf, which is of length size.
*
* If the filename would require a buffer longer than size elements, NULL is
* returned, and errno is set to ERANGE; an application should check for this
* error, and allocate a larger buffer if necessary.
*
* Return value:
* NULL on failure, with errno set accordingly, and buf on success. The
* contents of the array pointed to by buf is undefined on error.
*
* Notes:
* This function is tested on Linux only. It relies on information supplied by
* the /proc file system.
* The returned filename points to the final executable loaded by the execve()
* system call. In the case of scripts, the filename points to the script
* handler, not to the script.
* The filename returned points to the actual exectuable and not a symlink.
*
*/
char* getexename(char* buf, size_t size)
{
char linkname[64]; /* /proc/<pid>/exe */
pid_t pid;
int ret;
/* Get our PID and build the name of the link in /proc */
pid = getpid();
if (snprintf(linkname, sizeof(linkname), "/proc/%i/exe", pid) < 0)
{
/* This should only happen on large word systems. I'm not sure
what the proper response is here.
Since it really is an assert-like condition, aborting the
program seems to be in order. */
abort();
}
/* Now read the symbolic link */
ret = readlink(linkname, buf, size);
/* In case of an error, leave the handling up to the caller */
if (ret == -1)
return NULL;
/* Report insufficient buffer size */
if (ret >= size)
{
errno = ERANGE;
return NULL;
}
/* Ensure proper NUL termination */
buf[ret] = 0;
return buf;
}
</code></pre>
<p>Essentially, you use <code>getpid()</code> to find your PID, then figure out where the symbolic link at <code>/proc/<pid>/exe</code> points to.</p>
http://stackoverflow.com/questions/754234/are-high-resolution-calls-to-get-the-system-time-wrong-by-the-time-the-function-r/754243#7542433Answer by Matt J for Are high resolution calls to get the system time wrong by the time the function returns?Matt J2009-04-16T00:00:36Z2009-04-16T01:36:42Z<p>Yes, the answer you get will be off by a certain (smallish) amount; I have never heard of a timer function compensating for the average return time, because such a thing is nearly impossible to predict well. Such things are usually implemented by simply reading a register in the hardware and returning the value, or a version of it scaled to the appropriate timescale.</p>
<p>That said, I wouldn't lose sleep over this. The accepted way of keeping this overhead from affecting your measurements in any significant way is <em>not to use these timers for short events</em>. Usually, you will time several hundred, thousand, or million executions of the same thing, and divide by the number of executions to estimate the average time. Such a thing is usually more useful than timing a single instance, as it takes into account average cache behavior, OS effects, and so forth.</p>
http://stackoverflow.com/questions/754439/iterative-tree-walking/754452#7544524Answer by Matt J for Iterative tree walkingMatt J2009-04-16T01:31:27Z2009-04-16T01:31:27Z<p>If you have a fixed amount of memory dedicated to the stack, as you often do (this is especially a problem in many Java JVM configurations), recursion may not work well if you have a deep tree (or if recursion depth is high in any other scenario); it will cause a stack overflow. An iterative approach, pushing nodes to visit onto a queue (for BFS-like traversal) or stack (for DFS-like traversal) has better memory properties in several ways, so if this matters, use an iterative approach.</p>
<p>The advantage of recursion is simplicity/elegance of expression, not performance. Remembering that is the key to choosing the appropriate approach for a given algorithm, problem size, and machine architecture.</p>
http://stackoverflow.com/questions/753140/how-do-i-determine-if-two-convex-polygons-intersect/753279#7532791Answer by Matt J for How do I determine if two convex polygons intersect?Matt J2009-04-15T19:16:52Z2009-04-15T19:16:52Z<p><a href="http://www.win.tue.nl/~gino/solid/jgt98convex.pdf" rel="nofollow">GJK</a> <a href="http://en.wikipedia.org/wiki/Gilbert-Johnson-Keerthi%5Fdistance%5Falgorithm" rel="nofollow">collision</a> <a href="http://ieeexplore.ieee.org/xpl/freeabs%5Fall.jsp?&arnumber=2083" rel="nofollow">detection</a> <a href="https://mollyrocket.com/forums/viewtopic.php?t=245" rel="nofollow">should</a> <a href="http://web.comlab.ox.ac.uk/people/Stephen.Cameron/distances/" rel="nofollow">work</a>.</p>
http://stackoverflow.com/questions/1752732/how-do-i-build-a-domain-specific-query-language/1753063#1753063Comment by Matt J on How do I build a domain-specific query language?Matt J2009-11-18T02:48:24Z2009-11-18T02:48:24ZYikes; no need to shout :) I only mean that even if you're right, the specific information you have included in the answer thus far will not be helpful. The fact that this question exists suggests that, if a list of formalized predicates exists, the OP doesn't see it (as evidenced by step 1). No effort was made in the answer to seek more information to help the asker formalize the predicates or realize that such a list of predicates may exist already. "This is a dumb question; think harder" may well be true, but doesn't help anybody. Neither do appeals to authority.http://stackoverflow.com/questions/1752732/how-do-i-build-a-domain-specific-query-language/1753063#1753063Comment by Matt J on How do I build a domain-specific query language?Matt J2009-11-18T01:58:18Z2009-11-18T01:58:18ZHow is this helpful? I understand the value of "you're doing it wrong" answers, but you have no idea what the 'database' mentioned is (could be a SQL database in the traditional sense, a tarball of web pages having something to do with biology or other unstructured test). Furthermore, clearly relational algebra will be at the heart of most sensible query languages, but one size does not fit all. Many languages coexist because they provide better expressability or performance for somebody, and while creating a DSL may not be necessary, there isn't enough information here to conclude that.http://stackoverflow.com/questions/1736039/how-do-i-find-the-nth-ancestor-of-a-node-in-a-binary-search-tree/1736062#1736062Comment by Matt J on How do I find the nth ancestor of a node in a binary search tree?Matt J2009-11-15T01:12:54Z2009-11-15T01:12:54ZThe queue can be even worse than that, requiring O(n) for a completely unbalanced tree that has devolved into a linked list.
If you're OK with potentially O(n) memory, you may also consider a flat array of size N to hold your traversal history. That also avoids the O(N) (for a singly-linked list) or O(k) (for a doubly-linked list) traversal to find the kth ancestor after the target has been reached.http://stackoverflow.com/questions/648862/shell-script-search-and-replace-text-in-multiple-files-using-a-list-of-strings/648873#648873Comment by Matt J on Shell script - search and replace text in multiple files using a list of stringsMatt J2009-08-06T14:00:06Z2009-08-06T14:00:06ZI edited the post to remove it :)http://stackoverflow.com/questions/1205041/how-to-optimize-a-c-for-loop/1205517#1205517Comment by Matt J on How to optimize a C for loop?Matt J2009-07-30T16:45:25Z2009-07-30T16:45:25ZAssuming the compiler cannot do it for you (which it should), the second code sample avoids recalculating byte_index*NBBY each loop iteration.http://stackoverflow.com/questions/1205041/how-to-optimize-a-c-for-loop/1205071#1205071Comment by Matt J on How to optimize a C for loop?Matt J2009-07-30T16:36:57Z2009-07-30T16:36:57Ztrue, inlining and unrolling+inlining are viable solutions as well. in my experience, it seems as though the compiler is more likely to do inlining for you than unrolling, so unrolling in your C code is moderately likely to yield unrolling+inlining in the compiled code, assuming the function is small enough not to cause ghastly numbers of cache misses.http://stackoverflow.com/questions/1139424/c-c-rounding-up-decimals-with-a-certain-precision-efficiently/1139569#1139569Comment by Matt J on C/C++ rounding up decimals with a certain precision, efficiently Matt J2009-07-20T01:34:17Z2009-07-20T01:34:17ZActually, I think this works (don't think it will be fast though). For example, to round to the nearest hundredth, 1.014 would round down to 1.01 (1.014 + .005 = 1.019, truncate to 2 decimal places), but 1.017 would round up to 1.02 (1.017 + .005 = 1.022, truncate to 2 decimal places).http://stackoverflow.com/questions/1015449/regex-like-syntax-or-cfg-for-generating-cartesian-product-of-concatenated-string/1015626#1015626Comment by Matt J on Regex-like syntax or CFG for generating cartesian product of concatenated string variables and literalsMatt J2009-06-19T00:01:48Z2009-06-19T00:01:48ZYeah, PICT looks like it would do what I want, though it may be a little overkill for my purposes. This is for running a carefully-selected set of directed simulations, not for testing, so I really just need a shorthand for generating lots of strings with common structure; you can always write your input in such a way that the cartesian product turns out to be exactly the set of things you wanted (though it may be convoluted to do so if you are exploring a non-linear, for lack of a better term, piece of the parameter space).http://stackoverflow.com/questions/1015449/regex-like-syntax-or-cfg-for-generating-cartesian-product-of-concatenated-string/1015559#1015559Comment by Matt J on Regex-like syntax or CFG for generating cartesian product of concatenated string variables and literalsMatt J2009-06-18T23:23:30Z2009-06-18T23:23:30ZThanks so much! This works great for my current use case, and when the time comes to add recursion to the syntax, I'll stop putting off learning Python and use it as my 'hello world' (unless you're bored ;)http://stackoverflow.com/questions/1015449/regex-like-syntax-or-cfg-for-generating-cartesian-product-of-concatenated-string/1015626#1015626Comment by Matt J on Regex-like syntax or CFG for generating cartesian product of concatenated string variables and literalsMatt J2009-06-18T23:13:11Z2009-06-18T23:13:11ZAgreed; the functionality I am looking for is quite different than the implementation of regexes in any language I know of; as I tried to get across in the title, the pleasing syntax for combining literals and variables is what I'm after.
As far as your second point, my idea was that I would write a separate input file for each set of jobs I'd like to do, in such a way that the exhaustive list is indeed what I want. If there is a scheme which allows me to specify the space of possible arguments to my program, and simply pick out a subset of those in each input file, that's fine too.http://stackoverflow.com/questions/603828/java-5-to-java-1-4-source-code-backporting-tool/603932#603932Comment by Matt J on Java 5 to Java 1.4 Source Code Backporting ToolMatt J2009-06-18T22:09:20Z2009-06-18T22:09:20ZIn general no, but this also isn't as big of an issue because 1.6 didn't add a lot of new language features like 1.5 did. You can always generate bytecode from your 1.6 source code that will run on a 1.4 or 1.5 JVM, you just can't use Declawer to transform your 1.6 source code into source code that only uses 1.5 language and API features that is still readable.http://stackoverflow.com/questions/1001494/being-a-lone-developer/1001504#1001504Comment by Matt J on Being A Lone DeveloperMatt J2009-06-16T22:41:25Z2009-06-16T22:41:25Z@Zack: Does being in Arizona affect your situation? Just curious, hadn't heard anything particularly bad about the economy there :)http://stackoverflow.com/questions/981608/toggle-two-bits-with-a-single-operation-in-cComment by Matt J on toggle two bits with a single operation in C?Matt J2009-06-11T19:48:46Z2009-06-11T19:48:46ZSorry to pile on, but we really should get some clarity from Nate as to what the question was (either you need to swap the bit values, or you need to toggle both bits), and change the title and question text appropriately. As it is, there are some good answers here on both fronts, but they will not be easily searchable because the title of the question, text of the question, and answers are all pretty ambiguous as to whether a swap (anew <- bold, bnew <- aold) or toggle (anew <- ~aold, bnew <- ~bold) is required.http://stackoverflow.com/questions/981608/toggle-two-bits-with-a-single-operation-in-c/981639#981639Comment by Matt J on toggle two bits with a single operation in C?Matt J2009-06-11T18:34:05Z2009-06-11T18:34:05Z@Nate: XORing a bit with 1 will toggle that bit. XORing a bit with 0 will keep it the same. If you want to toggle a certain set of bits in a 32-bit value, create another 32-bit value with the bits you want to toggle set to 1, and the rest 0. In the case of bits 2 and 4, (1 << 2) | (1 << 4) == 0x14. In the case of bits 1 and 3, (1 << 1) && (1 << 3) == 0xA. http://stackoverflow.com/questions/978149/is-there-any-way-to-add-two-bytes-with-overflow-in-python/978261#978261Comment by Matt J on Is there any way to add two bytes with overflow in python?Matt J2009-06-11T00:18:47Z2009-06-11T00:18:47ZMost decent optimizing compilers will do a strength reduction and implement your "% (2^n)" as an "& ((1 << n)-1)". Wouldn't be too hard for the Python interpreter to do the same.