Update the forces according to Chaste/Chaste#513
Specifically do the folllowing:
- Replace #include "GeneralisedLinearSpringForce.hpp" with #include "LinearSpringForce.hpp" (mesh-based) or #include "PathmanathanInteractionForce.hpp" (node-based)
- Replace MAKE_PTR(GeneralisedLinearSpringForce, ...) with MAKE_PTR(LinearSpringForce, ...) for MeshBasedCellPopulation simulations
- Replace MAKE_PTR(GeneralisedLinearSpringForce, ...) with MAKE_PTR(PathmanathanInteractionForce, ...) for NodeBasedCellPopulation simulations
Update the forces according to Chaste/Chaste#513
Specifically do the folllowing: