Changeset b52d27 in git for factory/variable.h


Ignore:
Timestamp:
Jun 13, 2014, 2:48:44 PM (10 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
d87069c50888d28eb107ade8c7418040795ac0d4
Parents:
086f3ec7ab7655f9627e1c40dd022bf8494b12b1
git-author:
Martin Lee <martinlee84@web.de>2014-06-13 14:48:44+02:00
git-committer:
Martin Lee <martinlee84@web.de>2014-06-17 17:12:29+02:00
Message:
chg: more docu changes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/variable.h

    r086f3e rb52d27  
    11/* emacs edit mode for this file is -*- C++ -*- */
    22
     3/**
     4 * @file variable.h
     5 *
     6 * operations on variables
     7**/
    38#ifndef INCL_VARIABLE_H
    49#define INCL_VARIABLE_H
     
    2227class CanonicalForm;
    2328
     29/**
     30 * factory's class for variables
     31**/
    2432class Variable
    2533{
     
    7179#endif /* NOSTREAMIO */
    7280    friend void swap_levels();
     81    /** returns a symbolic root of polynomial with name @a name.
     82     *  Use it to define algebraic variables
     83     *  @note: algebraic variables have a level < 0
     84    **/
    7385    friend Variable rootOf( const CanonicalForm &, char name );
    7486};
     87
     88/** returns a symbolic root of polynomial with name @a name
     89 *  Use it to define algebraic variables
     90 *  @note: algebraic variables have a level < 0
     91**/
    7592Variable rootOf( const CanonicalForm &, char name = '@' );
    7693
Note: See TracChangeset for help on using the changeset viewer.