On Thu, 17 Dec 2009, Michael Povolotskyi wrote: > I'm working with libmesh-0.6.4 distribution. > There is no src/partitioner there but there is src/partitioning directory, > that contains classes derived from Partition class.
Whoops, yes, src/partitioning is what I meant. > Is there any example (in the examples/ directory) of those classes usage? I'm afraid not, because for most users the usage is automatic. The default partitioner class (usually Metis for SerialMesh and Parmetis for ParallelMesh) gets created, and it runs automatically at the appropriate times. But to swap out partitioners it ought to be as simple as: mesh->partitioner().reset(new MyPartitioner); --- Roy ------------------------------------------------------------------------------ This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to market process makes app distribution fast and easy Join now and get one step closer to millions of Verizon customers http://p.sf.net/sfu/verizon-dev2dev _______________________________________________ Libmesh-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/libmesh-users
