t Community Choice Awards: VOTE NOW!
> Studies have shown that voting for your favorite open source project,
> along with a healthy diet, reduces your potential for chronic lameness
> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
> __
Hello,
I'm using the class NewmarkSystem. For solving the equation system I
need to use a direct Solver.
For this reason I start my programm like this:
./programm -pc_type lu
The only drawback is that the Solver now calculates the LU-decomposition
at every time step, as far as I know.
But this
John Peterson wrote:
> On Thu, Jul 10, 2008 at 9:02 AM, Mathias Nenning <[EMAIL PROTECTED]> wrote:
>
>> John Peterson wrote:
>>
>>> Off the top of my head I'd have to guess it's the -mat_type argument,
>>> since
John Peterson wrote:
> On Thu, Jul 10, 2008 at 8:44 AM, Mathias Nenning <[EMAIL PROTECTED]> wrote:
>
>> Hello,
>>
>> I'm using PETSc Version 2.3.3 with the following configuration:
>>
>> ./config/configure.py --download-f-blas-lapack=1 --
Hello,
I'm using PETSc Version 2.3.3 with the following configuration:
./config/configure.py --download-f-blas-lapack=1 --with-mpi
--download-mpich=1 --with-superlu=1 --download-superlu=1
--with-superlu_dist=1 --download-superlu_dist=1 --with-debugging=0
--with-cc=gcc --with-cxx=g++ --with-fc
I found the problem - I just forgot the template arguments...
Sorry for bothering someone...
Mathias
Mathias Nenning wrote:
> Hello!
>
> I'm trying to derive a class "InfFEwith2D" from class "InfFE" but
> compiling my code will end up with the error:
>
be compiled without error if I just derive from class
"FEBase" - but that's not my intention...
Is the compiler error due to the nested classes "Radial" and "Base" in
class "InfFE"?
I appreciate any suggestions - Thank's in advance...
Mathias Ne
Benjamin Kirk wrote:
>> In general, using pointers to class methods doesn't really work like
>> you would expect the reason? Because you have to have a class
>> instance to call it on... meaning you have to store two pieces of
>> data... the pointer to the method and a pointer to a class insta
Hello!
I'm programming a Newmarksystem...
My question is, if it is possible to attach a "assemble function" which
is a method of a class...
Example:
PoroNewmark
{
private:
// declaration of a function pointer
void (PoroNewmark::*funcP)( EquationSystems &es, const std::string&
system_name );
p