| Base 41ae1d | Head #4540 68a28d | ||||
|---|---|---|---|---|---|
| Total | Total | +/- | New | ||
| Rate | 65.99% | 65.99% | +0.00% | 100.00% | |
| Hits | 79526 | 79530 | +4 | 12 | |
| Misses | 40994 | 40994 | - | 0 | |
| Filename | Stmts | Miss | Cover |
|---|---|---|---|
| include/mesh/mesh_base.h | +6 | +1 | -0.51% |
| src/mesh/mesh_base.C | -2 | 0 | -0.02% |
| src/mesh/mesh_triangle_holes.C | 0 | -1 | +0.28% |
| TOTAL | +4 | 0 | +0.00% |
codecodecode+
2624 2625 2626 2627 + 2628 2629 + 2630 + 2631 2632 2633 2634 2635 + 2636 2637 + 2638 + 2639 2640 2641 2642 2643 + 2644 2645 + 2646 + 2647 2648 2649 |
// ------------------------------------------------------------ // Elem class member functions inline const std::set<unsigned char> & MeshBase::elem_dimensions() const { libmesh_assert(_preparation.has_cached_elem_data); return _elem_dims; } inline const std::set<Order> & MeshBase::elem_default_orders() const { libmesh_assert(_preparation.has_cached_elem_data); return _elem_default_orders; } inline Order MeshBase::supported_nodal_order() const { libmesh_assert(_preparation.has_cached_elem_data); return _supported_nodal_order; } |
2656 2657 2658 2659 + 2660 2661 + 2662 2663 + 2664 2665 2666 |
inline unsigned int MeshBase::spatial_dimension () const { libmesh_assert(_preparation.has_cached_elem_data); return cast_int<unsigned int>(_spatial_dimension); } template <typename T> |
276 277 278 279 280 281 282 |
{ ray_target = inside - Point(1); intersection_distances = this->find_ray_intersections(inside, ray_target); } // I'd make this an assert, but I'm not 100% confident we can't |