User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T17:29:18Zhttp://stackoverflow.com/feeds/user/108088http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1733656/has-anyone-seen-a-2-sat-implementation0Has anyone seen a 2-Sat implementationunknown (yahoo)2009-11-14T08:10:33Z2009-11-14T15:58:34Z
<p>I have been looking for a while, but I just can't seem to find any implementation of the 2-Sat algorithm.</p>
<p>I am working in c++ with the boost library (which has a <a href="http://www.boost.org/doc/libs/1_40_0/libs/graph/doc/strong_components.html" rel="nofollow">strongly connected component module</a>) and need some guidance to either create an efficient 2-Sat program or find an existing library for me to utilise through c++.</p>
http://stackoverflow.com/questions/1678710/boost-mincut-from-maxflow0Boost MinCut from MaxFlowunknown (yahoo)2009-11-05T06:34:18Z2009-11-06T07:57:38Z
<p>I need to get an st-MinCut of a graph. I recently started using the C++ Boost libraries, which don't seem to have that st-MinCut functionality, but the do have MaxFlow implementations and I can (in theory) make use of the MaxFlow/MinCut duality.</p>
<p>I have gotten the "push relabel max flow" function working properly, but I can't figure out how to run a DFS, from the source along edges where the residual capacity are greater than 0, to get the nodes on the source side.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1060521/checking-if-a-graph-is-random-using-the-erdsrenyi-model2Checking if a graph is random using the Erdős–Rényi model?unknown (yahoo)2009-06-29T20:59:01Z2009-10-25T05:11:01Z
<p>Given some graph, I would like to determine how likely it is that it was generated randomly. I was told that a comparison to the Erdős–Rényi model was a good way to get this information, but I can't quite figure out how to do that.</p>
<p>Any advice?</p>
http://stackoverflow.com/questions/1495510/combining-dictionaries-of-lists-in-python1Combining Dictionaries Of Lists In Pythonunknown (yahoo)2009-09-29T23:54:01Z2009-10-03T17:11:54Z
<p>I have a very large collection of (p, q) tuples that I would like to convert into a dictionary of lists where the first item in each tuple is a key that indexes a list that contains q.</p>
<p>Example: </p>
<pre><code>Original List: (1, 2), (1, 3), (2, 3)
Resultant Dictionary: {1:[2, 3], 2:[3]}
</code></pre>
<p>Furthermore, I would like to efficiently combine these dictionaries.</p>
<p>Example: </p>
<pre><code>Original Dictionaries: {1:[2, 3], 2:[3]}, {1:[4], 3:[1]}
Resultant Dictionary: {1:[2, 3, 4], 2:[3], 3:[1]}
</code></pre>
<p>These operations reside within an inner loop, so I would prefer that they be as fast as possible.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1482619/shortest-path-for-a-dag0Shortest Path For A Dagunknown (yahoo)2009-09-27T02:11:11Z2009-09-27T03:05:32Z
<p>I have a graph with an s and t vertex that I need to find the shortest path between. The graph has a lot of special properties that I would like to capitalize on:
*The graph is a DAG (directed acyclic graph).
*I can create a topological sort in O(V) time, faster than the traditional O(V + E).
*Within the topological sort, s is the first item in the list and t is the last.</p>
<p>I was told that once I have a topological sort of the vertices I could find the shortest path faster than my current standard of Dijkstra's Uniform Cost, but I cannot seem to find the algorithm for it.</p>
<p>Psuedocode would be greatly appreciated.</p>
<p>Thanks</p>
<p>EDITS:
All paths from s to t have the same number of edges.
Edges have weights.
I am searching for lowest cost path.</p>
http://stackoverflow.com/questions/1036660/python-web-based-bot1Python Web-based Botunknown (yahoo)2009-06-24T06:15:59Z2009-06-29T05:31:46Z
<p>I am trying to write a Python-based Web Bot that can read and interpret an HTML page, then execute an onClick function and receive the resulting new HTML page. I can already read the HTML page and I can determine the functions to be called by the onClick command, but I have no idea how to execute those functions or how to receive the resulting HTML code.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/844030/sending-messages-to-a-flash-game-with-c-autoit/1036741#10367410Answer by unknown (yahoo) for sending messages to a flash game with C# / autoitunknown (yahoo)2009-06-24T06:43:51Z2009-06-24T06:43:51Z<p>I had a very similar problem a while ago, also writing a Minesweeper bot using AutoItX but in C++.
In the following code:</p>
<pre><code>char szHandle[256];
AU3_WinGetHandle("title", "text", szHandle, 256)
</code></pre>
<p>szHandle was populated with the handle for the proper window, but in a hex string format like "AAFCC0" rather than an actual integer based pointer.</p>
<p>I suspect that you need to convert the full, handle, or both in this manner.</p>
<p>I don't know C# all that well, but maybe the following code will help:</p>
<pre><code>(int.Parse(handle, NumberStyles.AllowHexSpecifier)).ToString();
</code></pre>
http://stackoverflow.com/questions/1002937/c-regex-split-to-java-pattern-split0C# Regex Split To Java Pattern splitunknown (yahoo)2009-06-16T17:42:09Z2009-06-16T18:18:17Z
<p>I have to port some C# code to Java and I am having some trouble converting a string splitting command.</p>
<p>While the actual regex is still correct, when splitting in C# the regex tokens are part of the resulting string[], but in Java the regex tokens are removed.</p>
<p>What is the easiest way to keep the split-on tokens?</p>
<p>Here is an example of C# code that works the way I want it:</p>
<pre><code>using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
String[] values = Regex.Split("5+10", @"([\+\-\*\(\)\^\\/])");
foreach (String value in values)
Console.WriteLine(value);
}
}
Produces:
5
+
10
</code></pre>
http://stackoverflow.com/questions/871968/threading-in-java2Threading in Javaunknown (yahoo)2009-05-16T08:16:26Z2009-05-20T11:16:30Z
<p>I am trying to have my main thread spawn off a new thread and, after some time, raise the interrupt flag. When it does so, the spawned thread should see that flag and terminate itself.</p>
<p>The main thread looks something like this:</p>
<pre><code>final Thread t = new Thread()
{
@Override
public void run()
{
f();
}
};
t.start();
try
{
t.join(time);
t.interrupt();
if(t.isAlive())
{
t.join(allowance);
if(t.isAlive())
throw new Exception();
}
}
catch(Exception e)
{
System.err.println("f did not terminate in the alloted time");
}
</code></pre>
<p>And the spawned thread has a bunch of the following scattered throughout its code:</p>
<pre><code>if(Thread.interrupted()) return;
</code></pre>
<p>When I am in debug mode, everything works perfectly. The interrupt flag is raised by the main thread and is caught by the spawned thread. However, in regular run mode the spawned thread doesn't seem to receive the interrupt flag, no matter how long I set the allowance.</p>
<p>Does anyone know what I am doing wrong?</p>
<p>Note: I am using Ubuntu and I am all-together new to anything Linux. Can the problem be with the OS? I have not tested the code on any other OS.</p>
http://stackoverflow.com/questions/1002937/c-regex-split-to-java-pattern-splitComment by on C# Regex Split To Java Pattern split2009-06-16T18:09:38Z2009-06-16T18:09:38ZI probably don't need the backslashes, but I didn't write the regex, I am just porting the code.http://stackoverflow.com/questions/1002937/c-regex-split-to-java-pattern-split/1002977#1002977Comment by on C# Regex Split To Java Pattern split2009-06-16T17:58:54Z2009-06-16T17:58:54ZTry the following:
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
String[] values = Regex.Split("5+10", @"([\+\-*\(\)\^\\/])");
foreach (String value in values)
Console.WriteLine(value);
}
}http://stackoverflow.com/questions/871968/threading-in-java/871996#871996Comment by on Threading in Java2009-05-16T14:38:27Z2009-05-16T14:38:27Z* If t finished before the interrupt, then the t.isAlive check will succeed and no error would be thrown.
* The function f is, for all purposes, a while(true) loop that checks for the interrupt in every iteration. Also, each iteration takes considerably less time than the allowance variable provides.
* The exception caught is the one I throw.http://stackoverflow.com/questions/871968/threading-in-javaComment by on Threading in Java2009-05-16T14:32:31Z2009-05-16T14:32:31Zf is a function designed to run forever if given the opportunity. So, allowance is the amount of time for f to catch the interrupt and exit. Also, the message is printed when the allowance time is up.