]> www.ginac.de Git - ginac.git/blobdiff - ginac/power.h
* Remove support for <strstream>. It is too bug-ridden.
[ginac.git] / ginac / power.h
index 175fea057c39fa12fb25388f478ff2a9b293eb6d..97072e2a4d3ad50ec11768c7d4a891b69f4f9460 100644 (file)
@@ -90,13 +90,6 @@ protected:
 
 // utility functions
 
-/** Return the power object handled by an ex.  Deprecated: use ex_to<power>().
- *  This is unsafe: you need to check the type first. */
-inline const power &ex_to_power(const ex &e)
-{
-       return static_cast<const power &>(*e.bp);
-}
-
 /** Efficient specialization of is_exactly_a<power>(obj) for power objects. */
 template<> inline bool is_exactly_a<power>(const basic & obj)
 {
@@ -120,7 +113,11 @@ inline ex pow(const T1 & b, const T2 & e)
 }
 
 /** Square root expression.  Returns a power-object with exponent 1/2. */
-ex sqrt(const ex & a);
+inline ex sqrt(const ex & a)
+{
+       extern const ex _ex1_2;
+       return power(a,_ex1_2);
+}
 
 } // namespace GiNaC