]> www.ginac.de Git - ginac.git/blobdiff - ginac/inifcns.h
Univariate Hensel lifting now uses upoly.
[ginac.git] / ginac / inifcns.h
index 05043819e9deeceb6a42d54cc03c5140238399e9..b8349d1bba898d93e292debc4aef6ecbc313639d 100644 (file)
@@ -3,7 +3,7 @@
  *  Interface to GiNaC's initially known functions. */
 
 /*
- *  GiNaC Copyright (C) 1999-2005 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2008 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -31,10 +31,19 @@ namespace GiNaC {
 
 /** Complex conjugate. */
 DECLARE_FUNCTION_1P(conjugate_function)
+
+/** Real part. */
+DECLARE_FUNCTION_1P(real_part_function)
+
+/** Imaginary part. */
+DECLARE_FUNCTION_1P(imag_part_function)
        
 /** Absolute value. */
 DECLARE_FUNCTION_1P(abs)
        
+/** Step function. */
+DECLARE_FUNCTION_1P(step)
+       
 /** Complex sign. */
 DECLARE_FUNCTION_1P(csgn)