X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fsymbol.cpp;h=6b265a775e74e67b4d6877618620cf1a187ce4ed;hp=2d42b5af8047055e5d005df9431258de7046e0fd;hb=006b3274b157c4772c16d30f49079913bd236652;hpb=9eab44408b9213d8909b7a9e525f404ad06064dd diff --git a/ginac/symbol.cpp b/ginac/symbol.cpp index 2d42b5af..6b265a77 100644 --- a/ginac/symbol.cpp +++ b/ginac/symbol.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's symbolic objects. */ /* - * GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2003 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 @@ -25,198 +25,173 @@ #include "symbol.h" #include "lst.h" +#include "print.h" +#include "archive.h" +#include "tostring.h" #include "utils.h" -#include "idx.h" -#include "debugmsg.h" namespace GiNaC { +GINAC_IMPLEMENT_REGISTERED_CLASS(symbol, basic) + ////////// -// default constructor, destructor, copy constructor assignment operator and helpers +// default constructor ////////// -symbol::symbol() : basic(TINFO_symbol) -{ - debugmsg("symbol default constructor",LOGLEVEL_CONSTRUCT); - serial=next_serial++; - name=autoname_prefix()+ToString(serial); - asexinfop=new assigned_ex_info; - setflag(status_flags::evaluated); -} - -symbol::~symbol() -{ - debugmsg("symbol destructor",LOGLEVEL_DESTRUCT); - destroy(0); -} - -symbol::symbol(symbol const & other) -{ - debugmsg("symbol copy constructor",LOGLEVEL_CONSTRUCT); - copy(other); -} - -void symbol::copy(symbol const & other) -{ - basic::copy(other); - name=other.name; - serial=other.serial; - asexinfop=other.asexinfop; - ++asexinfop->refcount; -} - -void symbol::destroy(bool call_parent) +symbol::symbol() + : inherited(TINFO_symbol), asexinfop(new assigned_ex_info), serial(next_serial++), name(autoname_prefix() + ToString(serial)), TeX_name(name) { - if (--asexinfop->refcount == 0) { - delete asexinfop; - } - if (call_parent) { - basic::destroy(call_parent); - } + setflag(status_flags::evaluated | status_flags::expanded); } -// how should the following be interpreted? -// symbol x; -// symbol y; -// x=y; -// probably as: x=ex(y); - ////////// // other constructors ////////// // public -symbol::symbol(string const & initname) : basic(TINFO_symbol) +symbol::symbol(const std::string & initname) + : inherited(TINFO_symbol), asexinfop(new assigned_ex_info), serial(next_serial++), name(initname), TeX_name(default_TeX_name()) +{ + setflag(status_flags::evaluated | status_flags::expanded); +} + +symbol::symbol(const std::string & initname, const std::string & texname) + : inherited(TINFO_symbol), asexinfop(new assigned_ex_info), serial(next_serial++), name(initname), TeX_name(texname) { - debugmsg("symbol constructor from string",LOGLEVEL_CONSTRUCT); - name=initname; - serial=next_serial++; - asexinfop=new assigned_ex_info; - setflag(status_flags::evaluated); + setflag(status_flags::evaluated | status_flags::expanded); } ////////// -// functions overriding virtual functions from bases classes +// archiving ////////// -// public - -basic * symbol::duplicate() const +/** Construct object from archive_node. */ +symbol::symbol(const archive_node &n, lst &sym_lst) + : inherited(n, sym_lst), asexinfop(new assigned_ex_info), serial(next_serial++) { - debugmsg("symbol duplicate",LOGLEVEL_DUPLICATE); - return new symbol(*this); + if (!(n.find_string("name", name))) + name = autoname_prefix() + ToString(serial); + if (!(n.find_string("TeXname", TeX_name))) + TeX_name = default_TeX_name(); + setflag(status_flags::evaluated); } -bool symbol::info(unsigned inf) const +/** Unarchive the object. */ +ex symbol::unarchive(const archive_node &n, lst &sym_lst) { - if (inf==info_flags::symbol) return true; - if (inf==info_flags::polynomial || inf==info_flags::integer_polynomial || inf==info_flags::rational_polynomial || inf==info_flags::rational_function) { - return true; - } else { - return basic::info(inf); - } -} + ex s = (new symbol(n, sym_lst))->setflag(status_flags::dynallocated); -ex symbol::expand(unsigned options) const -{ - return this->hold(); -} + // If symbol is in sym_lst, return the existing symbol + for (lst::const_iterator it = sym_lst.begin(); it != sym_lst.end(); ++it) { + if (is_a(*it) && (ex_to(*it).name == ex_to(s).name)) + return *it; + } -bool symbol::has(ex const & other) const -{ - if (is_equal(*other.bp)) return true; - return false; + // Otherwise add new symbol to list and return it + sym_lst.append(s); + return s; } -int symbol::degree(symbol const & s) const +/** Archive the object. */ +void symbol::archive(archive_node &n) const { - return compare_same_type(s)==0 ? 1 : 0; + inherited::archive(n); + n.add_string("name", name); + if (TeX_name != default_TeX_name()) + n.add_string("TeX_name", TeX_name); } -int symbol::ldegree(symbol const & s) const -{ - return compare_same_type(s)==0 ? 1 : 0; -} +////////// +// functions overriding virtual functions from base classes +////////// -ex symbol::coeff(symbol const & s, int const n) const +// public + +void symbol::print(const print_context & c, unsigned level) const { - if (compare_same_type(s)==0) { - return n==1 ? exONE() : exZERO(); - } else { - return n==0 ? *this : exZERO(); - } + if (is_a(c)) { + + c.s << std::string(level, ' ') << name << " (" << class_name() << ")" + << ", serial=" << serial + << std::hex << ", hash=0x" << hashvalue << ", flags=0x" << flags << std::dec + << std::endl; + + } else if (is_a(c)) { + c.s << TeX_name; + } else if (is_a(c)) { + c.s << class_name() << "('" << name; + if (TeX_name != default_TeX_name()) + c.s << "','" << TeX_name; + c.s << "')"; + } else + c.s << name; } -ex symbol::eval(int level) const +bool symbol::info(unsigned inf) const { - if (level == -max_recursion_level) { - throw(std::runtime_error("max recursion level reached")); - } - - if (asexinfop->is_assigned) { - setflag(status_flags::evaluated); - if (level==1) { - return (asexinfop->assigned_expression); - } else { - return (asexinfop->assigned_expression).eval(level); - } - } else { - return this->hold(); - } + if (inf==info_flags::symbol) return true; + if (inf==info_flags::polynomial || + inf==info_flags::integer_polynomial || + inf==info_flags::cinteger_polynomial || + inf==info_flags::rational_polynomial || + inf==info_flags::crational_polynomial || + inf==info_flags::rational_function) + return true; + else + return inherited::info(inf); } -ex symbol::subs(lst const & ls, lst const & lr) const +ex symbol::eval(int level) const { - ASSERT(ls.nops()==lr.nops()); -#ifdef DOASSERT - for (int i=0; iis_assigned) { + setflag(status_flags::evaluated); + if (level==1) + return (asexinfop->assigned_expression); + else + return (asexinfop->assigned_expression).eval(level); + } else { + return this->hold(); + } } // protected -int symbol::compare_same_type(basic const & other) const +/** Implementation of ex::diff() for single differentiation of a symbol. + * It returns 1 or 0. + * + * @see ex::diff */ +ex symbol::derivative(const symbol & s) const { - ASSERT(is_of_type(other,symbol)); - const symbol *o = static_cast(&other); - if (serial==o->serial) return 0; - return serial < o->serial ? -1 : 1; + if (compare_same_type(s)) + return _ex0; + else + return _ex1; } -bool symbol::is_equal_same_type(basic const & other) const +int symbol::compare_same_type(const basic & other) const { - ASSERT(is_of_type(other,symbol)); - const symbol *o = static_cast(&other); - return serial==o->serial; + GINAC_ASSERT(is_a(other)); + const symbol *o = static_cast(&other); + if (serial==o->serial) return 0; + return serial < o->serial ? -1 : 1; } -unsigned symbol::return_type(void) const -{ - return return_types::commutative; -} - -unsigned symbol::return_type_tinfo(void) const +bool symbol::is_equal_same_type(const basic & other) const { - return tinfo_key; + GINAC_ASSERT(is_a(other)); + const symbol *o = static_cast(&other); + return serial==o->serial; } -unsigned symbol::calchash(void) const +unsigned symbol::calchash() const { - // return golden_ratio_hash(tinfo()) ^ serial; - hashvalue=golden_ratio_hash(golden_ratio_hash(0x55555555U ^ serial)); - setflag(status_flags::hash_calculated); - return hashvalue; + hashvalue = golden_ratio_hash(tinfo() ^ serial); + setflag(status_flags::hash_calculated); + return hashvalue; } ////////// @@ -231,28 +206,52 @@ unsigned symbol::calchash(void) const // public -void symbol::assign(ex const & value) +void symbol::assign(const ex & value) { - asexinfop->is_assigned=1; - asexinfop->assigned_expression=value; - clearflag(status_flags::evaluated); + asexinfop->is_assigned = true; + asexinfop->assigned_expression = value; + clearflag(status_flags::evaluated | status_flags::expanded); } -void symbol::unassign(void) +void symbol::unassign() { - if (asexinfop->is_assigned) { - asexinfop->is_assigned=0; - asexinfop->assigned_expression=exZERO(); - } - setflag(status_flags::evaluated); + if (asexinfop->is_assigned) { + asexinfop->is_assigned = false; + asexinfop->assigned_expression = _ex0; + } + setflag(status_flags::evaluated | status_flags::expanded); } // private -string & symbol::autoname_prefix(void) +/** Symbols not constructed with a string get one assigned using this + * prefix and a number. */ +std::string & symbol::autoname_prefix() +{ + static std::string *s = new std::string("symbol"); + return *s; +} + +/** Return default TeX name for symbol. This recognizes some greek letters. */ +std::string symbol::default_TeX_name() const { - static string * s=new string("symbol"); - return *s; + if (name=="alpha" || name=="beta" || name=="gamma" + || name=="delta" || name=="epsilon" || name=="varepsilon" + || name=="zeta" || name=="eta" || name=="theta" + || name=="vartheta" || name=="iota" || name=="kappa" + || name=="lambda" || name=="mu" || name=="nu" + || name=="xi" || name=="omicron" || name=="pi" + || name=="varpi" || name=="rho" || name=="varrho" + || name=="sigma" || name=="varsigma" || name=="tau" + || name=="upsilon" || name=="phi" || name=="varphi" + || name=="chi" || name=="psi" || name=="omega" + || name=="Gamma" || name=="Delta" || name=="Theta" + || name=="Lambda" || name=="Xi" || name=="Pi" + || name=="Sigma" || name=="Upsilon" || name=="Phi" + || name=="Psi" || name=="Omega") + return "\\" + name; + else + return name; } ////////// @@ -261,23 +260,14 @@ string & symbol::autoname_prefix(void) // private -unsigned symbol::next_serial=0; - -// string const symbol::autoname_prefix="symbol"; - -////////// -// global constants -////////// - -const symbol some_symbol; -type_info const & typeid_symbol=typeid(some_symbol); +unsigned symbol::next_serial = 0; ////////// // subclass assigned_ex_info ////////// /** Default ctor. Defaults to unassigned. */ -symbol::assigned_ex_info::assigned_ex_info(void) : is_assigned(0), refcount(1) +symbol::assigned_ex_info::assigned_ex_info() : is_assigned(false) { }