Re: [Libmesh-devel] [patch] VTK_IO: memleak, cleanup, parallel output

2013-01-24 Thread Paul T. Bauman
On Thu, Jan 24, 2013 at 4:01 PM, Robert wrote: > > As I still need quantities on the reference configuration (mapping > jacobian), on the current configuration (shape functions, > their derivations, qp positions, normals) and the mapping between > undeformed and deformed configuration I currently

Re: [Libmesh-devel] [patch] VTK_IO: memleak, cleanup, parallel output

2013-01-24 Thread Robert
On Wed, Jan 23, 2013 at 12:43:17PM -0600, Roy Stogner wrote: > > On Thu, 10 Jan 2013, Robert wrote: > > > On Thu, Jan 10, 2013 at 07:27:43AM -0600, Roy Stogner wrote: > >> On Thu, 10 Jan 2013, Robert wrote: > >>> The compression feature depends on a somewhat recent version of vtk, > >>> I can do

Re: [Libmesh-devel] getting a list of subdomains in a mesh

2013-01-24 Thread Roy Stogner
On Thu, 24 Jan 2013, Kirk, Benjamin (JSC-EG311) wrote: …I swear this method exists somewhere, doesn't it? I don't remember it and can't find it. What I would like to do is std::set<> foo = mesh.subdomain_ids() or something like that. I'd be a little scared of RVO not working in problems

Re: [Libmesh-devel] getting a list of subdomains in a mesh

2013-01-24 Thread Paul T. Bauman
On Thu, Jan 24, 2013 at 11:59 AM, Kirk, Benjamin (JSC-EG311) < benjamin.kir...@nasa.gov> wrote: > …I swear this method exists somewhere, doesn't it? > I thought it did too, but I'm not seeing it. -- Master Visual Studio,

[Libmesh-devel] getting a list of subdomains in a mesh

2013-01-24 Thread Kirk, Benjamin (JSC-EG311)
…I swear this method exists somewhere, doesn't it? What I would like to do is std::set<> foo = mesh.subdomain_ids() or something like that. It appears that we basically build this internally to MeshBase::n_subdomains () and return its size, but I'd like the actual set. Am I crazy (in this li

Re: [Libmesh-devel] How to develop a new example?

2013-01-24 Thread Kirk, Benjamin (JSC-EG311)
On Jan 23, 2013, at 10:16 PM, Derek Gaston wrote: > A couple of more things about the new build system when trying to make a new > example with in-tree builds: > > 1. Compiling using "make check" is not a good solution: > a. It means my Emacs hooks for compiling in Emacs don't work (small

Re: [Libmesh-devel] How to develop a new example?

2013-01-24 Thread Roy Stogner
On Wed, 23 Jan 2013, Paul T. Bauman wrote: libtool --mode=execute gdb executable  This is good for libtool-based projects in general (and libtool is good in general despite these annoyances - switching to autotools unbroke our Cygwin builds *incidentally*, and it looks like libtool was why),