[Libmesh-devel] Side key computing method for Prism18

2010-07-17 Thread Liu Kai
Hi, I notice the find_neighbors() method seems not to give a correct answer when a Prism18 cell is adjacent to a Hex27 cell. When I trace the problem, I find for the side composing of same nodes, the two types cell's key() method override don't compute the same key value. Hex27::key() is

[Libmesh-devel] Why not use boost::bimap to implement string_to_enum ?

2009-11-18 Thread Liu Kai
Hi all, I find that things like string_to_enum and enum_to_string in src/utils are exactly bi-direction map, which has been well implemented in boost library. So why not use the boost::bimap to implement these functionality, instead of implement the same thing by hand? I just want to know if