]> www.ginac.de Git - ginac.git/blobdiff - ginac/constant.cpp
- added skeleton implementation of color and clifford classes (don't bother
[ginac.git] / ginac / constant.cpp
index 9002515452c7dc7eed3b39532aa4badec8b9ad3b..5b2bfebe89c0dbfadcfb54fe2337c9e9631bd94b 100644 (file)
@@ -91,13 +91,11 @@ constant::constant(const std::string & initname, const numeric & initnumber)
 // archiving
 //////////
 
-/** Construct object from archive_node. */
 constant::constant(const archive_node &n, const lst &sym_lst) : inherited(n, sym_lst)
 {
        debugmsg("constant ctor from archive_node", LOGLEVEL_CONSTRUCT);
 }
 
-/** Unarchive the object. */
 ex constant::unarchive(const archive_node &n, const lst &sym_lst)
 {
        // Find constant by name (!! this is bad: 'twould be better if there
@@ -116,7 +114,6 @@ ex constant::unarchive(const archive_node &n, const lst &sym_lst)
                throw (std::runtime_error("unnamed constant in archive"));
 }
 
-/** Archive the object. */
 void constant::archive(archive_node &n) const
 {
        inherited::archive(n);