User Paul - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T03:59:57Zhttp://stackoverflow.com/feeds/user/1687http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/333282/transaction-with-monetdb-and-jdbc-driver0Transaction with MonetDB and JDBC driverPaul2008-12-02T07:51:25Z2009-11-20T18:50:59Z
<p>I'm trying to perform transaction-like behavior with MonetDB and its JDBC driver.</p>
<p>I tried first to set autocommit to false for the connection, I then get the following error on commit :</p>
<pre><code>java.lang.IndexOutOfBoundsException
at java.nio.StringCharBuffer.subSequence(StringCharBuffer.java:92)
at nl.cwi.monetdb.mcl.parser.StartOfHeaderParser.getNextAsString(StartOfHeaderParser.java:130)
at nl.cwi.monetdb.jdbc.MonetConnection$ResponseList.executeQuery(MonetConnection.java:1927)
at nl.cwi.monetdb.jdbc.MonetConnection$ResponseList.processQuery(MonetConnection.java:1808)
at nl.cwi.monetdb.jdbc.MonetConnection.commit(MonetConnection.java:347)
</code></pre>
<p>I then tried to set autocommit to true and call </p>
<p>START TRANSACTION;
...
COMMIT;</p>
<p>but this doesn't seem to work either. Any idea/experience about that?</p>
http://stackoverflow.com/questions/1722670/common-way-to-call-mother-class-operator-in-c0Common way to call mother-class operator= in C++?Paul2009-11-12T14:44:41Z2009-11-12T14:55:03Z
<p>Let's suppose I have a class Dog that inherits from class Animal,
you might want to insert a call to Animal::operator= in Dog::operator=.</p>
<p>What is the most readable/common way to write it?</p>
<p>I think I know those two...</p>
<pre><code>static_cast<Animal*>(this)->operator=(other);
</code></pre>
<p>and</p>
<pre><code>this->Animal::operator=(other);
</code></pre>
http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset3STL: How to check that an element is in a std::set ?Paul2009-11-09T13:46:08Z2009-11-09T17:39:19Z
<p>How do you check that an element is in a set?</p>
<p>Is there a simpler equivalent of the following code:</p>
<pre><code>myset.find(x) != myset.end()
</code></pre>
http://stackoverflow.com/questions/1367316/include-and-include8#include <> and #include "" [closed]Paul2009-09-02T12:10:07Z2009-09-03T14:52:25Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/21593/what-is-the-difference-between-include-filename-and-include-filename">what is the difference between #include <filename> and #include “filename”</a> </p>
</blockquote>
<p>Is there a fundamental difference between the two #include syntax, apart from the way the path the compiler will search for?</p>
<p>I have the feeling that Intel's compiler does not give exactly the same output.</p>
http://stackoverflow.com/questions/1294382/what-is-a-global-interpreter-lock-gil/1294430#12944301Answer by Paul for What is a global interpreter lock (GIL)?Paul2009-08-18T14:57:06Z2009-08-18T22:20:05Z<p>Whenever two threads have access to the same variable you have a problem.
In C++ for instance, the way to avoid the problem is to define some mutex lock to prevent two thread to, let's say, enter the setter of an object at the same time.</p>
<p>Multithreading is possible in python, but two threads cannot be executed at the same time
at a granularity finer than one python instruction.
The running thread is getting a global lock called GIL.</p>
<p>This means if you begin write some multithreaded code in order to take advantage of your multicore processor, your performance won't improve.
The usual workaround consists of going multiprocess.</p>
<p>Note that it is possible to release the GIL if you're inside a method you wrote in C for instance.</p>
<p>The use of a GIL is not inherent to Python but to some of its interpreter, including the most common CPython.
(#edited, see comment)</p>
<p>The GIL issue is still valid in Python 3000.</p>
http://stackoverflow.com/questions/1292718/about-the-cost-of-virtual-function5about the cost of virtual functionPaul2009-08-18T09:03:20Z2009-08-18T09:37:28Z
<p>If I call a virtual function 1000 times in a loop, will I suffer from the vtable lookup overhead 1000 times or only once?</p>
http://stackoverflow.com/questions/1055160/unicode-friendly-alphabetic-pattern-for-python-regex3Unicode friendly alphabetic pattern for python regex?Paul2009-06-28T16:04:58Z2009-06-28T16:29:15Z
<p>I'm looking for a pattern equivalent to \w, and which doesn't match numeric pattern.
I cannot use [a-zA-Z] because I would like it to match japanese kanjis as well.</p>
<p>Is there a way to write something like [\w^[0-9]] ?
Is there an equivalent of [:alpha:] in python regex?</p>
http://stackoverflow.com/questions/14205/whats-your-favourite-programming-language-and-its-killer-feature/14260#1426012Answer by Paul for What's your favourite programming language, and its killer feature?Paul2008-08-18T06:47:30Z2009-06-05T11:05:32Z<p>OCaml, its killer feature might be pattern matching. It makes your program very readable :</p>
<pre><code>let rec fact = fun
| 0 -> 1
| n -> n*fact (n-1)
;;
let rec filter predicate = fun
| [] -> []
| h::q when predicate h -> h::(filter predicate q)
| h::q->(filter predicate q)
;;
</code></pre>
<p>Ok sorry for that :</p>
<p>So the first function describe the blockbuster factorial function.
It's implemented recursively.</p>
<p>So the first function should be read :</p>
<pre><code>*(l.1)* **let** **fact** be a **fun**ction defined **rec**ursively as :
*(l.2)* when given **0** as an argument, returns **1**
*(l.3)* when given **n** as an argument, returns **n-1**
</code></pre>
http://stackoverflow.com/questions/17721/experience-with-hadoop6Experience with Hadoop?Paul2008-08-20T10:43:13Z2009-05-21T22:40:37Z
<p>Hi,</p>
<p>Have any of you tried Hadoop? Can it be used without the distributed filesystem that goes with it, in a Share-nothing architecture? Would that make sense?</p>
<p>I'm also interested into any performance results you have...</p>
http://stackoverflow.com/questions/824160/which-compilation-option-should-be-set-for-profiling1Which compilation option should be set for profiling?Paul2009-05-05T09:57:10Z2009-05-05T14:36:41Z
<p>Hi,</p>
<p>I need to profile an application compiled with intel's compiler via VC++.
I'm using VTune to profile my code.</p>
<p>My understanding is that in release mode I won't have the debug information
that is necessary for the profiler to profile my code while in debug mode, the result
of the profiling will not be pertinent.</p>
<p>What should I do ? Is it possible to add debug info in release mode?
How can I set this mode?</p>
<p>If so, will I still benefit from all the optimization (inlining etc.)?</p>
http://stackoverflow.com/questions/714068/how-do-you-organize-javascript-verboseness/714115#7141151Answer by Paul for How do you organize Javascript verboseness?Paul2009-04-03T14:18:47Z2009-04-03T14:18:47Z<p>jQuery makes things shorter via a magic function $() that gives back a wrapper of your dom element.</p>
<p>The wrapper gives you access to all the css property, and pretty much all its methods
(ie the setters are giving back "this") including the CSS setters.</p>
<p>It will be clearer with an example...</p>
<pre><code>$("<a href='toto/'></a>")
.css("position", "absolute");
.css("right", "3em")
.appendTo($(containerid));
</code></pre>
http://stackoverflow.com/questions/707879/python-bayesian-text-classification-modules/708236#7082360Answer by Paul for Python Bayesian text classification modulesPaul2009-04-02T03:57:28Z2009-04-02T03:57:28Z<p>If you're trying to detect language
<a href="http://cogscicoder.blogspot.com/2009/03/automatic-language-identification-using.html" rel="nofollow">this</a> works fine even with pretty short texts.</p>
<p>The api is pretty close to yours but
I don't know if it is called a Bayesian classifier. </p>
http://stackoverflow.com/questions/662762/can-i-write-python-web-application-for-windows-and-linux-platforms-at-the-same-ti/662784#6627842Answer by Paul for Can I write Python web application for Windows and Linux platforms at the same time?Paul2009-03-19T15:55:29Z2009-03-19T15:55:29Z<p>web.py includes a server... It will do the trick for small jobs.</p>
<p>By the way, Apache works on windows.</p>
http://stackoverflow.com/questions/659737/python-how-to-add-rsa-padding/661276#6612762Answer by Paul for Python: How to add RSA padding?Paul2009-03-19T07:02:35Z2009-03-19T07:09:07Z<p>One of the reason for <strong>random</strong> padding might be that "from the book" RSA with low exponent (let's say 3) can be cracked really simply if the exact same message is sent to several people (three).</p>
<p>You'd therefore better make sure that you don't send the exact same message by applying some kind of random (yet inversible) transformation to your message before.</p>
<p>Maybe that's what thing padding is about !?</p>
<p>EDIT:
I looked on wikipedia. what I was talking about is called Hastad's attack.</p>
http://stackoverflow.com/questions/660727/python-decorator-specific-argument-unrelated-to-wrapped-function/660751#6607515Answer by Paul for Python: decorator specific argument (unrelated to wrapped function)?Paul2009-03-19T01:22:45Z2009-03-19T01:29:36Z<p>The idea is that your decorator is a function returning a decorator.</p>
<p><strong>FIRST</strong> Write your decorator as if you knew your argument was a global variable. Let's say something like:</p>
<p>-</p>
<pre><code>def decorator(f):
def decorated(*args,**kwargs):
cache = Cache(cachepath)
if cache.iscached(*args,**kwargs):
...
else:
res = f(*args,**kwargs)
cache.store((*args,**kwargs), res)
return res
return decorated
</code></pre>
<p><strong>THEN</strong> Write a function that takes cachepath as an arg and return your decorator.</p>
<p>-</p>
<pre><code>def cache(filepath)
def decorator(f):
def decorated(*args,**kwargs):
cache = Cache(cachepath)
if cache.iscached(*args,**kwargs):
...
else:
res = f(*args,**kwargs)
cache.store((*args,**kwargs), res)
return res
return decorated
return decorator
</code></pre>
http://stackoverflow.com/questions/660634/css-text-decoration-reverse/660708#6607084Answer by Paul for CSS text-decoration: reversePaul2009-03-19T01:01:24Z2009-03-19T01:06:07Z<p>What are you calling reverted?
Do you mean to set the background as the foreground color and vice versa?
(Maybe it's a stupid comment, but if so it is not a decoration is it?)</p>
<p>Anyway you're about to have a fight between DRY and MVC here :</p>
<ul>
<li>either you declare a new CSS class
each time you want to do that. That's
redundant and painful, but you indeed
separated the style from the code.</li>
</ul>
<p>Typically:</p>
<pre><code>.mydiv {
background-color: blue;
color: red;
font-family:...;
(...)
}
.mydiv:hover {
color: red;
background-color: blue;
}
</code></pre>
<ul>
<li><p>another option is to do that through javascript. Proxify suggested using jQuery.</p>
<p>The result would probably look like that... (not tested)</p></li>
</ul>
<pre><code>$(".invert").map(function (el) {
var color = el.css("color");
var bgcolor = el.css("background-color");
el.css("color", bgcolor).css("background-color",color);
})</code></pre>
http://stackoverflow.com/questions/656933/communicating-with-a-running-python-daemon/656956#6569568Answer by Paul for Communicating with a running python daemonPaul2009-03-18T04:22:00Z2009-03-18T10:04:48Z<p>What about having it run an http server?</p>
<p>It seems crazy but running a simple web server for administrating your
server requires just a few lines using web.py</p>
<p>You can also consider creating a unix pipe.</p>
http://stackoverflow.com/questions/656897/normal-distribution-function/656971#6569712Answer by Paul for Normal Distribution functionPaul2009-03-18T04:31:13Z2009-03-18T08:22:50Z<p>A normal distribution is never equal to 0.
Please make sure that what you want to plot is indeed a
normal distribution.</p>
<p>If you're only looking for this bell shape (with the tangent and everything)
you can use the following formula:</p>
<pre><code>x^2*(x-10)^2 for x between 0 and 10
0 elsewhere
</code></pre>
<p>(Divide by 125 if you need to have your peek on 5.)</p>
<pre><code>double bell(double x) {
if ((x < 10) && (x>0))
return x*x*(x-10.)*(x-10.)/125.;
else
return 0.;
}
</code></pre>
http://stackoverflow.com/questions/653783/a-simple-freeze-behavior-decorator2A simple freeze behavior decoratorPaul2009-03-17T11:08:54Z2009-03-17T18:57:28Z
<p>Hi,</p>
<p>I'm trying to write a freeze decorator for Python.</p>
<p>The idea is as follows :</p>
<p><strong>(In response to the two comments)</strong></p>
<p>I might be wrong but I think there is two main use of
test case.</p>
<ul>
<li><p>One is the test-driven development :
Ideally , developers are writing case before writing the code.
It usually helps defining the architecture because this discipline
forces to define the real interfaces before development.
One may even consider that in some case the person who
dispatches job between dev is writing the test case and
use it to illustrate efficiently the specification he has in mind.
I don't have any experience of the use of test case like that.</p></li>
<li><p>The second is the idea that all project with a decent
size and a several programmers is suffering from broken code.
Something that use to work may get broken from a change
that looked like an innocent refactoring.
Though good architecture, loose couple between component may
help to fight against this phenomenon ; you will sleep better
at night if you have written some test case to make sure
that nothing will break your program's behavior.</p></li>
</ul>
<p>HOWEVER,
Nobody can deny the overhead of writting test cases. In the
first case one may argue that test case is actually guiding
development and is therefore not to be considered as an overhead.</p>
<p>Frankly speaking, I'm a pretty young programmer and if I were
you, my word on this subject is not really valuable...
Anyway, I think that mosts company/projects are not working
like that, and that unit tests are mainly used in the second
case...</p>
<p>In other words, rather than ensuring that the program is
working correctly, it is aiming at checking that it will
work the same in the future.</p>
<p>This needs can be met without the cost of writing tests,
by using this freezing decorator.</p>
<p>Let's say you have a function</p>
<pre><code>def pow(n,k):
if n == 0: return 1
else: return n * pow(n,k-1)
</code></pre>
<p>It is perfectly nice, and you want to rewrite it as an optimized version.
It is part of a big project. You want it to give back the same result
for a few value.
Rather than going through the pain of test cases, one could use some
kind of freeze decorator.</p>
<p>Something such that the first time the decorator is run,
the decorator run the function with the defined args (below 0, and 7)
and saves the result in a map ( f --> args --> result )</p>
<pre><code>@freeze(2,0)
@freeze(1,3)
@freeze(3,5)
@freeze(0,0)
def pow(n,k):
if n == 0: return 1
else: return n * pow(n,k-1)
</code></pre>
<p>Next time the program is executed, the decorator will load this map and check
that the result of this function for these args as not changed.</p>
<p>I already wrote quickly the decorator (see below), but hurt a few problems about
which I need your advise...</p>
<pre><code>from __future__ import with_statement
from collections import defaultdict
from types import GeneratorType
import cPickle
def __id_from_function(f):
return ".".join([f.__module__, f.__name__])
def generator_firsts(g, N=100):
try:
if N==0:
return []
else:
return [g.next()] + generator_firsts(g, N-1)
except StopIteration :
return []
def __post_process(v):
specialized_postprocess = [
(GeneratorType, generator_firsts),
(Exception, str),
]
try:
val_mro = v.__class__.mro()
for ( ancestor, specialized ) in specialized_postprocess:
if ancestor in val_mro:
return specialized(v)
raise ""
except:
print "Cannot accept this as a value"
return None
def __eval_function(f):
def aux(args, kargs):
try:
return ( True, __post_process( f(*args, **kargs) ) )
except Exception, e:
return ( False, __post_process(e) )
return aux
def __compare_behavior(f, past_records):
for (args, kargs, result) in past_records:
assert __eval_function(f)(args,kargs) == result
def __record_behavior(f, past_records, args, kargs):
registered_args = [ (a, k) for (a, k, r) in past_records ]
if (args, kargs) not in registered_args:
res = __eval_function(f)(args, kargs)
past_records.append( (args, kargs, res) )
def __open_frz():
try:
with open(".frz", "r") as __open_frz:
return cPickle.load(__open_frz)
except:
return defaultdict(list)
def __save_frz(past_records):
with open(".frz", "w") as __open_frz:
return cPickle.dump(past_records, __open_frz)
def freeze_behavior(*args, **kvargs):
def freeze_decorator(f):
past_records = __open_frz()
f_id = __id_from_function(f)
f_past_records = past_records[f_id]
__compare_behavior(f, f_past_records)
__record_behavior(f, f_past_records, args, kvargs)
__save_frz(past_records)
return f
return freeze_decorator
</code></pre>
<ul>
<li><p>Dumping and Comparing of results is not trivial for all type. Right now I'm thinking about using a function (I call it postprocess here), to solve this problem.
Basically instead of storing res I store postprocess(res) and I compare postprocess(res1)==postprocess(res2), instead of comparing res1 res2.
It is important to let the user overload the predefined postprocess function.
My first question is :
<strong>Do you know a way to check if an object is dumpable or not?</strong></p></li>
<li><p>Defining a key for the function decorated is a pain. In the following snippets
I am using the function module and its name.
** Can you think of a smarter way to do that. **</p></li>
<li><p>The snippets below is kind of working, but opens and close the file when testing and when recording. This is just a stupid prototype... but do you know a nice way to open the file, process the decorator for all function, close the file...</p></li>
<li><p>I intend to add some functionalities to this. For instance, add the possibity to define
an iterable to browse a set of argument, record arguments from real use, etc.
Why would you expect from such a decorator?</p></li>
<li><p>In general, would you use such a feature, knowing its limitation... Especially when trying to use it with POO?</p></li>
</ul>
http://stackoverflow.com/questions/653259/effective-way-to-iteratively-append-to-a-string-in-python/653268#6532684Answer by Paul for Effective way to iteratively append to a string in Python?Paul2009-03-17T07:08:48Z2009-03-17T07:28:42Z<p>You don't want to use re.split?</p>
<pre><code>import re
re.split("[,; ]+", "coucou1 , coucou2;coucou3")
</code></pre>
http://stackoverflow.com/questions/642901/a-bit-of-tiling1A bit of tiling...Paul2009-03-13T14:13:42Z2009-03-13T20:24:18Z
<p>I just finished writing a small script to combine a lot of png pictures into
a bigger one for CSS Sprite.</p>
<p>So basically, I have a list of dimensions [(w1,h2), ..., (wn,hn)]
and I need to put them into a frame with dimension (W,H) with WH as
small as possible. (Of course they cannot overlap)</p>
<p>The heuristic I used is obviously not optimal. I was wondering
if you had any ideas on the subject?
Do you think some smarter constraint, like grouping images with
similar histograms would make the png smaller?</p>
http://stackoverflow.com/questions/642991/whats-the-correct-way-for-a-cross-browser-html-layout/643041#6430410Answer by Paul for What's the correct way for a cross-browser HTML layout?Paul2009-03-13T14:48:24Z2009-03-13T14:48:24Z<p>I think it's impossible.</p>
<p>Note however that if the height of the row is known you can define your
table via
first column
- first row, second row, ...
second column
- ....</p>
http://stackoverflow.com/questions/617097/iterative-version-of-pythons-deepcopy/617394#6173940Answer by Paul for Iterative version of Python's deepcopyPaul2009-03-06T01:08:35Z2009-03-06T01:08:35Z<p>Maybe it would work as such with <a href="http://en.wikipedia.org/wiki/Stackless%5FPython" rel="nofollow">Stackless Python</a></p>
http://stackoverflow.com/questions/609972/boolean-and-in-python/610373#6103735Answer by Paul for Boolean 'and' in PythonPaul2009-03-04T12:44:06Z2009-03-04T12:44:06Z<p>You can also test them as a couple.</p>
<pre><code>if (i,ii)==(5,10):
print "i is 5 and ii is 10"
</code></pre>
http://stackoverflow.com/questions/590109/find-all-duplicates-and-missing-values-in-a-sorted-array/590600#5906000Answer by Paul for Find all duplicates and missing values in a sorted arrayPaul2009-02-26T13:43:09Z2009-02-26T13:43:09Z<p>in python </p>
<pre><code>consecutive=zip(l[0:-1],l[1:])
duplicate=[ a for (a,b) in consecutive if a==b]
missing=reduce(lambda u,v:u+v, [range(a+1,b) for (a,b) in consecutive])
</code></pre>
http://stackoverflow.com/questions/589145/what-does-this-mysterious-color-method-do-what-does-it-return/589157#5891573Answer by Paul for What does this mysterious Color Method do? What does it return?Paul2009-02-26T04:54:56Z2009-02-26T04:54:56Z<p>It seems like you have colortable which is a storing a list of colors.</p>
<p>Then you have this strangely hardcoded colorspace of </p>
<blockquote>
<p>Colors that have component which are a
multiple of 4 and are "not too bright"
but not "too dark either".</p>
</blockquote>
<p>This function seems to be giving you the color in the latter which "contrasts" the best with your color table.</p>
<p>When I say contrast , this is defined by choosing the color that is as far as possible from the color table using the 2-norm.</p>
http://stackoverflow.com/questions/588749/python-daemon-packaging-best-practices/588891#5888912Answer by Paul for Python Daemon Packaging Best PracticesPaul2009-02-26T02:44:33Z2009-02-26T02:44:33Z<p>There are many snippets on the internet offering to write a daemon in pure python (no bash scripts)</p>
<p><a href="http://www.jejik.com/articles/2007/02/a_simple_unix_linux_daemon_in_python/" rel="nofollow">http://www.jejik.com/articles/2007/02/a_simple_unix_linux_daemon_in_python/</a>
looks clean...</p>
<p>If you want to write your own,<br />
the principle is the same as with the bash daemon function.</p>
<p>Basically:</p>
<p><strong>On start:</strong></p>
<ul>
<li>you fork to another process</li>
<li>open a logfile to redirect your
stdout and stderr </li>
<li>Save the pid somewhere.</li>
</ul>
<p><strong>On stop:</strong></p>
<ul>
<li>You send SIGTERM to the process with pid stored in your pidfile.</li>
<li>With signal.signal(signal.SIGTERM, sigtermhandler) you can bind a stopping
procedure to the SIGTERM signal.</li>
</ul>
<p>I don't know any widely used package doing this though.</p>
http://stackoverflow.com/questions/585815/how-useful-is-python/585834#5858341Answer by Paul for How useful is Python?Paul2009-02-25T12:42:13Z2009-02-25T13:17:42Z<ul>
<li><p>Python is like a new/better PERL.
It makes it possible to write pretty complicated system scripts
in a very compact and easy to read way.</p></li>
<li><p>Python is fine for big projects as well.</p></li>
<li><p>Python offers access to a LOT of libraries,
whose API is most of the time far simpler than
what you can meet in other languages.</p></li>
<li><p>Python is pretty fast for a dynamic language.</p></li>
<li><p>Python doesn't care whether you are more about OOP or
functional programming. You're free to adopt
both programming styles.</p></li>
</ul>
http://stackoverflow.com/questions/585913/c-member-function-virtual-override-and-overload-at-the-same-time/585940#5859401Answer by Paul for C++ member function virtual override and overload at the same timePaul2009-02-25T13:14:20Z2009-02-25T13:14:20Z<p>I was a bit doubtful about that one, but indeed it does not compile.
Here is a simplified version of the code that illustrates the same issue.</p>
<pre><code>class A {
public:
virtual void f(int) {}
virtual void f(void*) {}
};
class B : public A {
public:
virtual void f(void*) {}
};
int main() {
B b;
b.f(1);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/585529/find-all-strings-in-python-code-files/585780#5857802Answer by Paul for Find all strings in python code filesPaul2009-02-25T12:24:21Z2009-02-25T12:24:21Z<p>You may also consider to parse your code with
<a href="http://pygments.org/" rel="nofollow">pygments.</a></p>
<p>I don't know the other solution, but it sure is very
simple to use.</p>
http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1702184#1702184Comment by Paul on STL: How to check that an element is in a std::set ?Paul2009-11-09T17:16:32Z2009-11-09T17:16:32Zwhat about container.begin()?http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1702184#1702184Comment by Paul on STL: How to check that an element is in a std::set ?Paul2009-11-09T16:57:55Z2009-11-09T16:57:55ZThank you very much!!!http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701128#1701128Comment by Paul on STL: How to check that an element is in a std::set ?Paul2009-11-09T16:42:56Z2009-11-09T16:42:56Z@280Z28 Could you give us your version? I'm not really familiar with STL style...http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701128#1701128Comment by Paul on STL: How to check that an element is in a std::set ?Paul2009-11-09T16:39:27Z2009-11-09T16:39:27Z@wilhelmtell but what if I want it inline?http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701128#1701128Comment by Paul on STL: How to check that an element is in a std::set ?Paul2009-11-09T14:02:08Z2009-11-09T14:02:08Zjust did so :
template<class T>
static inline bool contains(const std::set<T>& S, T x) {
return (S.find(x) != S.end());
}
http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701083#1701083Comment by Paul on STL: How to check that an element is in a std::set ?Paul2009-11-09T13:54:37Z2009-11-09T13:54:37Zthank you very much.http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701072#1701072Comment by Paul on STL: How to check that an element is in a std::set ?Paul2009-11-09T13:52:05Z2009-11-09T13:52:05Z... which could be casted into a bool
I understand your answer, however I like my code to be easy to read, and it's slightly twisted to use count to check if something is in a set.
So you're positive this is the common idiom?http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701072#1701072Comment by Paul on STL: How to check that an element is in a std::set ?Paul2009-11-09T13:47:58Z2009-11-09T13:47:58ZI mean, is there something like "is_in" or "contains" somewhere? I couldn't find anything...http://stackoverflow.com/questions/1367316/include-and-includeComment by Paul on #include <> and #include ""Paul2009-09-08T14:05:16Z2009-09-08T14:05:16ZOk... By different output I meant that VC++ gave me a (pertinent) warning with the #include "", and it couldn't detect the issue with the #include <>. http://stackoverflow.com/questions/1294382/what-is-a-global-interpreter-lock-gil/1294430#1294430Comment by Paul on What is a global interpreter lock (GIL)?Paul2009-08-18T22:19:26Z2009-08-18T22:19:26ZGood point. Thank you for the commenthttp://stackoverflow.com/questions/1292718/about-the-cost-of-virtual-function/1292775#1292775Comment by Paul on about the cost of virtual functionPaul2009-08-18T12:29:48Z2009-08-18T12:29:48ZI know it "could", I don't if it "does" help me.http://stackoverflow.com/questions/1292718/about-the-cost-of-virtual-function/1292773#1292773Comment by Paul on about the cost of virtual functionPaul2009-08-18T12:27:34Z2009-08-18T12:27:34ZThank you very much for your answer and comments. I'll check that on gcc when I get some time.http://stackoverflow.com/questions/1055160/unicode-friendly-alphabetic-pattern-for-python-regex/1055173#1055173Comment by Paul on Unicode friendly alphabetic pattern for python regex?Paul2009-06-28T16:46:50Z2009-06-28T16:46:50Zpretty cool. I hadn't thought about that.http://stackoverflow.com/questions/14205/whats-your-favourite-programming-language-and-its-killer-feature/14260#14260Comment by Paul on What's your favourite programming language, and its killer feature?Paul2009-06-05T11:05:09Z2009-06-05T11:05:09Zfixed, sorry I wrote that in a rushhttp://stackoverflow.com/questions/711941/what-is-currently-considered-the-best-algorithm-for-2d-point-matchingComment by Paul on What is currently considered the "best" algorithm for 2D point-matching?Paul2009-04-03T00:12:49Z2009-04-03T00:12:49ZI'm interested into this one as well.