I would prefer either this:
std::unique_ptr<Solver> S ( UseDummySolver
? createDummySolver()
: new STPSolver(true) );
Solver& STP = *S;
or this:
std::shared_ptr<Solver> S ( UseDummySolver
? createDummySolver()
: new STPSolver(true) );
std::shared_ptr<Solver> STP = S;
Both avoid one problem with the code you've got there: we don't need do decide which pointer to call delete on when the objects leave scope (or, in fact, remember the need to call delete at all). Instead, we just wait until the variables leave scope, then the Solver object is automatically removed. STP is in the first case umambiguously just another way of accessing the object while it's in scope, in the second case it's an independent "co-owner" of the of the object and both pointers can independently be re-assigned.