Re: [Libmesh-users] DenseSubMatrix and DenseSubVector lack of ctor and operators

2016-08-22 Thread Mike Marchywka
> From: fried...@gmail.com > Date: Mon, 22 Aug 2016 21:53:12 + > Subject: Re: [Libmesh-users] DenseSubMatrix and DenseSubVector lack of > ctor and operators > To: marchy...@hotmail.com; jwpeter...@gmail.com > CC: libmesh-users@lis

Re: [Libmesh-users] DenseSubMatrix and DenseSubVector lack of ctor and operators

2016-08-22 Thread Derek Gaston
On Mon, Aug 22, 2016 at 1:08 PM Mike Marchywka wrote: > I tried that and the compiler did not like it because of the way you > designed the classes... > Compiler didn't like what? You have to write C++ that compiles. That has nothing to do with the "class design". Pay attention to the Doxygen

Re: [Libmesh-users] DenseSubMatrix and DenseSubVector lack of ctor and operators

2016-08-22 Thread Mike Marchywka
> From: fried...@gmail.com > Date: Mon, 22 Aug 2016 16:56:31 + > Subject: Re: [Libmesh-users] DenseSubMatrix and DenseSubVector lack of > ctor and operators > To: marchy...@hotmail.com; jwpeter...@gmail.com > CC: libmesh-users@lis

Re: [Libmesh-users] DenseSubMatrix and DenseSubVector lack of ctor and operators

2016-08-22 Thread Mike Marchywka
16 10:51:22 -0400 > CC: libmesh-users@lists.sourceforge.net > Subject: Re: [Libmesh-users] DenseSubMatrix and DenseSubVector lack of ctor > and operators > > > > > > > >> From: jwpeter...@gmail.com >> Date: Mon, 22 Aug 2016 0

Re: [Libmesh-users] DenseSubMatrix and DenseSubVector lack of ctor and operators

2016-08-22 Thread Derek Gaston
ike Marchywka wrote: > > > > > > > > From: jwpeter...@gmail.com > > Date: Mon, 22 Aug 2016 08:28:18 -0600 > > Subject: Re: [Libmesh-users] DenseSubMatrix and DenseSubVector lack of > > ctor and operators > > To: marchy...@hotmail.com > > CC: lib

Re: [Libmesh-users] DenseSubMatrix and DenseSubVector lack of ctor and operators

2016-08-22 Thread Mike Marchywka
> From: jwpeter...@gmail.com > Date: Mon, 22 Aug 2016 08:28:18 -0600 > Subject: Re: [Libmesh-users] DenseSubMatrix and DenseSubVector lack of > ctor and operators > To: marchy...@hotmail.com > CC: libmesh-users@lists.sourceforge.net

Re: [Libmesh-users] DenseSubMatrix and DenseSubVector lack of ctor and operators

2016-08-22 Thread John Peterson
On Mon, Aug 22, 2016 at 7:53 AM, Mike Marchywka wrote: > I was trying to move some code around related to the vars typically called > Ke and Fe > but encountered several errors due to missing ctor or operators such as > assignment. > Can someone comment on the benefit of or need for these restric

[Libmesh-users] DenseSubMatrix and DenseSubVector lack of ctor and operators

2016-08-22 Thread Mike Marchywka
I was trying to move some code around related to the vars typically called Ke and Fe but encountered several errors due to missing ctor or operators such as assignment. Can someone comment on the benefit of or need for these restrictions? I was trying to clean up my own code a bit and debating a