711 reputation
417
bio website
location
age
visits member for 2 years, 11 months
seen 14 hours ago
stats profile views 40

Jun
11
asked Interpreting cachegrind Ir count for function declaration lines
May
18
awarded  Notable Question
Mar
10
awarded  Popular Question
Jan
22
awarded  Popular Question
Nov
26
awarded  Notable Question
Jul
14
awarded  Yearling
Jul
5
comment Given a list of paths through a graph, efficiently find the ones that use each edge
40 000 vertices, 80 000 edges, 300 000 paths, paths typically have a few hundred edges
Jul
5
comment Given a list of paths through a graph, efficiently find the ones that use each edge
The graph and paths are precomputed and stored in memory. The path sets for each edge can be processed one at a time, releasing the memory. There is no need to copy the paths; I can refer to them by index.
Jul
5
comment Given a list of paths through a graph, efficiently find the ones that use each edge
Yes, the graph and paths fit in memory.
Jul
5
asked Given a list of paths through a graph, efficiently find the ones that use each edge
Jul
5
accepted Boost Graph Library - weight property from external vector
Jul
2
awarded  Popular Question
Jun
29
comment django admin static URLs: working for base.css but not for dashboard.css
Both files are accessible at /media/static/admin/css/. The question is why django.contrib.staticfiles is producing the right URL for base.css but not for dashboard.css.
Jun
28
awarded  Popular Question
Jun
27
comment django admin static URLs: working for base.css but not for dashboard.css
<link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% static "admin/css/base.css" %}{% endblock %}" />, <link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}" />
Jun
27
comment Convex Hull Misunderstanding?
True - The OP's solution by Graham scan is wrong, but his solution by intuition is right.
Jun
27
comment django admin static URLs: working for base.css but not for dashboard.css
I'm using Django 1.4. I don't set ADMIN_MEDIA_PREFIX because it is deprecated in 1.4. I'm not referencing dashboard.css or base.css myself, only django.contrib.admin is.
Jun
27
asked django admin static URLs: working for base.css but not for dashboard.css
Jun
27
answered Convex Hull Misunderstanding?
Jun
19
accepted External memory data structure to replace vector of maps