Sridhar Iyer
|
Registered User
|
Wired and Weird
|
|
Nov 17 |
comment |
Why should exceptions be used conservatively? Catskul: codesourcery.com/public/cxx-abi/… RTTI is used according to C++ standard. |
|
Nov 17 |
comment |
Why should exceptions be used conservatively? Catskul: codeproject.com/KB/cpp/… explains the implementation. Easy to see why it degrades performance from that article.(See how the control flow of the function is modified due to exception, how the type of the exception is resolved etc) |
|
Nov 17 |
comment |
Why should exceptions be used conservatively? UncleBens: (1) is for Maintainability not performance. Excessive use to try/catch/throw reduces the readability of the code. Rule of thumb(and I might come under fire for this but its just my opinion), lesser the entry and exit points, the easier it is to read the code. David Thornley: Not when you need interoperability. -fno-exceptions flag in gcc disables exceptions when you are compiling a library that is called from C code. |
|
Nov 16 |
answered | Why should exceptions be used conservatively? |
|
Oct 13 |
comment |
What is the worst code you’ve ever written? the code was an implementation of newton-raphson, fitting a model (i.e the buggy program). The operating dataset was small enough.. it was the fitting operation that took a long time. The pattern of outputs flagged the bug. I don't know how I could have caught it any other way. |
|
Oct 8 |
awarded | ● Popular Question |
|
Sep 17 |
awarded | ● Yearling |
|
Sep 2 |
comment |
Efficiently querying one string against multiple regexes. Am accepting this answer, because I've gone through all the other routes and failed (yes I have really implemented all the other solution and find them falling short in many areas). I've taken up the project to port the library from Haskell to C++.. might open source it later. This might not really work out later but this does seems promising and theoretically sound. |
|
Sep 2 |
comment |
Efficiently querying one string against multiple regexes. This was already implemented by us, but unfortunately the disadvantages you mention is why we are looking for a different solution. |
|
Sep 2 |
awarded | ● Commentator |
|
Sep 2 |
comment |
Efficiently querying one string against multiple regexes. If you are testing 10,000 regexes, it'll be very slow. You need some way to combine the tree to get a single pass parser. |
|
Sep 1 |
awarded | ● Nice Question |
|
Jun 24 |
comment |
Follow up to English Grammar Parser Then I would say, that first write down the grammar on paper (sample BNF on faqs.org/docs/perl5int/lexparse.html). Then tackle each rule one by one (Compiler Design by Per Brinch Hansen demonstrates this approach in an excellent way) |
|
Jun 23 |
answered | Follow up to English Grammar Parser |
