*/
Vector<double> mark_support_locations();
-
- /**
- * @deprecated
- *
- * This function only exists for backward compatibility as this is the
- * interface provided by previous versions of the library. The function
- * mark_support_locations replaces it and reflects the fact that the
- * locations marked are actually the support points.
- */
- Vector<double> mark_locations() DEAL_II_DEPRECATED;
-
-
/**
* Stores the actual location of each support point selected by the @p
* add_point(s) method. This can be used to compare with the point
}
-template <int dim>
-Vector<double> PointValueHistory<dim>
-::mark_locations ()
-{
- return mark_support_locations ();
-}
-
-
template <int dim>
void PointValueHistory<dim>
::get_support_locations (std::vector <std::vector<Point <dim> > > &locations)
// ---------------------------------------------------------------------
//
-// Copyright (C) 2009 - 2013 by the deal.II authors
+// Copyright (C) 2009 - 2014 by the deal.II authors
//
// This file is part of the deal.II library.
//
test_copy.add_field_name("Solution");
std::vector < std::vector <Point <dim> > > selected_locations;
test_copy.get_points(selected_locations);
- test_copy.mark_locations();
+ test_copy.mark_support_locations();
test_copy.close();
test_copy.start_new_dataset(0.1);
test_copy.evaluate_field("Solution", solution);
std::vector < std::vector <Point <dim> > > selected_locations;
node_monitor.get_points(selected_locations);
// write output to a file
- Vector<double> node_locations = node_monitor.mark_locations();
+ Vector<double> node_locations = node_monitor.mark_support_locations();
// write output to a file
}