The Scheme Shop027 (10/23/2005 5:48:26 PM) comp.lang.scheme Hi all, Announcing the Scheme Shop to you all. Official Shop for the Portuguese Scheme Portal at schemept.org. Europe: schemeportalss.spreadshirt.net US: schemeportalss.spreadshirt.com Enjoy! If you have any ... pmatos
Autotools set -O2 -g as default flags1220 (9/10/2005 6:32:50 PM) comp.unix.programmer Hi, How can I change these flags? If I add in Makefile.am CPPFLAGS -O0 and -ggdb files get compiled with -O2 -g -O0 -ggdb which is at least awkward. Any ideas? Paulo Matos ... pmatos
Specialization errors523 (9/9/2005 9:46:28 AM) comp.lang.c++ Hi all, I have implemented a matrix template to suit my needs and now I've implemented some methods for computing SVD decomposition of Matrix. I have: template class Matrix { public: .... Line 45: void svdcm... pmatos
Particularizing Template Method325 (9/8/2005 12:13:54 PM) comp.lang.c++ Hi all, Imagine I have: template class Matrix; I can have a Matrix of doubles, of cars, trains, any object at all... But know... I want to implement a method foo that should only work with Matrix. How can I s... pmatos
Integrating library requests with autotools1134 (9/3/2005 9:43:23 PM) comp.unix.programmer Hi all, Some libraries have a xxx-config --cflags to get the flags or --libs to get the libraries to which a program should link. If I'm build program A which depends on libB, how should I integrate the call t... pmatos
Getting home path11144 (9/3/2005 8:07:24 PM) comp.unix.programmer Hi all, What's the best way to get the currents user home path? Thanks, Paulo Matos ... pmatos
Flex regular expression problem397 (8/21/2005 4:25:07 AM) comp.compilers Hi all, I'm having some problems generating the regular expression for "any printable character except " between ". For example: "hello, how are you" "212 dasd 2" "bugasd " "" - SHOULD NOT WORK " " - Can work... pmatos
Solving linear system of equalities AND disequalities431 (8/20/2005 2:04:28 PM) comp.theory Hi all, Given I have a linear system of m constraints in m variables of equalities and disequalities what's the best way to handle the existence of disequalities? Is there any known algorithm that handles this... pmatos
Analysing Memory Usage during execution3174 (8/5/2005 1:41:07 PM) comp.unix.programmer Hi all, I have a program and I'd like a way to monitor memory usage during program execution. I've been using top but it's incovinient. It's cluttered with other apps and if my program doesn't use that much me... pmatos
Objects as private members...527 (5/5/2005 9:22:20 PM) comp.lang.c++ Hi all, I have a style question. I've been for long programming in Lisp-like languages and C when I need a low-level language. Now, I'm programming for professional reasons in C++ (which I had programmed in be... pocm(76)
Working with vectors922 (6/4/2005 11:35:47 PM) comp.lang.c++ Hi all, I have a few question regarding standard C++ and the use of vectors. Imagine: void foo(vector x); vector c; vector x; ---------- What happens when I do: c = x; and foo(x); Will it copy all x behin... pocm(76)
How to calculate size() from iterators428 (6/14/2005 4:11:17 PM) comp.lang.c++ Hi all, How can I compute the size of vector given iterators to it. Can I do : int size = itEnd - itBegin; ??? Cheers, Paulo Matos ... pocm(76)
Setting first and second of pair<>632 (7/3/2005 12:12:34 PM) comp.lang.c++ Hi all, Is there a way of (after creating a pair) set its first and second element of not? (pair is definitely a read-only struct)? Cheers, Paulo Matos ... pocm(76)
Typesetting a lyrics collection436 (7/17/2005 2:12:35 PM) comp.text.tex Hi all, I'd like to typeset a lyrics to form a personal book of lyrics. Is there a special package for that to use with latex2e or any tips on handling this issue? Cheers, Paulo Matos ... pocm(76)
using maps of string *.225 (7/20/2005 1:37:03 PM) comp.lang.c++ Hi all, I'm trying to use a map of string* and unsigned ints but results are not good. I've used as example this piece of code: http://www.sgi.com/tech/stl/Map.html And I have done this: #include #include ... pocm(76)
Solving linear system of equalities AND disequalities431 (8/20/2005 2:04:28 PM) comp.theory Hi all, Given I have a linear system of m constraints in m variables of equalities and disequalities what's the best way to handle the existence of disequalities? Is there any known algorithm that handles this... pocm(76)
Particularizing Template Method325 (9/8/2005 12:13:54 PM) comp.lang.c++ Hi all, Imagine I have: template class Matrix; I can have a Matrix of doubles, of cars, trains, any object at all... But know... I want to implement a method foo that should only work with Matrix. How can I s... pocm(76)
Specialization errors523 (9/9/2005 9:46:28 AM) comp.lang.c++ Hi all, I have implemented a matrix template to suit my needs and now I've implemented some methods for computing SVD decomposition of Matrix. I have: template class Matrix { public: .... Line 45: void svdcm... pocm(76)