Changeset 220bb4 in git


Ignore:
Timestamp:
Oct 7, 2022, 3:47:27 PM (19 months ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
b97cce62f5eef441b51eed6f5c76a848e4c5183a
Parents:
b6465e9e3fe92d4ba4e4afe29e8a65ce3e8019aec8494a882063042b484b71dc78932535f23dfa6a
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2022-10-07 15:47:27+02:00
git-committer:
GitHub <noreply@github.com>2022-10-07 15:47:27+02:00
Message:
Merge pull request #1155 from fchapoton/typos_spektrum

fix some typos in kernel/spektrum
Location:
kernel/spectrum
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • kernel/spectrum/kmatrix.h

    rb6465e r220bb4  
    3030//  how complicated this number is in terms of memory usage
    3131//  and arithmetic operations. For a rational p/q, one could
    32 //  return max(|p|,|q|). This fuction is used for pivoting.
     32//  return max(|p|,|q|). This function is used for pivoting.
    3333//
    3434//  The gcd of two numbers a,b should be a number g such that
     
    4444private:
    4545
    46     K    *a;                                // the entries ot the matrix
     46    K    *a;                                // the entries of the matrix
    4747    int rows;                               // number of rows
    4848    int cols;                               // number of columns
  • kernel/spectrum/npolygon.cc

    rb6465e r220bb4  
    291291
    292292// ----------------------------------------------------------------------------
    293 //  Allocate memory for a newton polygon of  k  linear forms
     293//  Allocate memory for a Newton polygon of  k  linear forms
    294294// ----------------------------------------------------------------------------
    295295
     
    645645/*
    646646// ----------------------------------------------------------------------------
    647 //  Chcek if the polynomial belonging to the Newton polygon
     647//  Check if the polynomial belonging to the Newton polygon
    648648//  is semiquasihomogeneous (sqh)
    649649// ----------------------------------------------------------------------------
  • kernel/spectrum/semic.cc

    rb6465e r220bb4  
    357357
    358358// ----------------------------------------------------------------------------
    359 //  compute the numver of spectrum numbers in the inverval  [*alpha1,*alpha2]
     359//  compute the number of spectrum numbers in the interval  [*alpha1,*alpha2]
    360360// ----------------------------------------------------------------------------
    361361
  • kernel/spectrum/splist.cc

    rb6465e r220bb4  
    4848
    4949// ----------------------------------------------------------------------------
    50 //  Inizialize a  spectrumPolyNode  shallow from data
     50//  Initialize a  spectrumPolyNode  shallow from data
    5151// ----------------------------------------------------------------------------
    5252
     
    6262
    6363// ----------------------------------------------------------------------------
    64 //  Inizialize a  spectrumPolyNode  shallow from another  spectrumPolyNode
     64//  Initialize a  spectrumPolyNode  shallow from another  spectrumPolyNode
    6565// ----------------------------------------------------------------------------
    6666
     
    120120
    121121// ----------------------------------------------------------------------------
    122 //  Inizialize a  spectrumPolyList  shallow from data
     122//  Initialize a  spectrumPolyList  shallow from data
    123123// ----------------------------------------------------------------------------
    124124
     
    132132
    133133// ----------------------------------------------------------------------------
    134 //  Inizialize a  spectrumPolyList  shallow from another  spectrumPolyList
     134//  Initialize a  spectrumPolyList  shallow from another  spectrumPolyList
    135135// ----------------------------------------------------------------------------
    136136
     
    159159
    160160// ----------------------------------------------------------------------------
    161 //  Destuctor for  spectrumPolyList
     161//  Destructor for  spectrumPolyList
    162162// ----------------------------------------------------------------------------
    163163
     
    179179//  Insert a new node into a  spectrumPolyList  at position k
    180180//      If the list is sorted, then
    181 //      the new node ist inserted such that the list remains sorted.
     181//      the new node is inserted such that the list remains sorted.
    182182// ----------------------------------------------------------------------------
    183183
  • kernel/spectrum/test.cc

    rb6465e r220bb4  
    310310  poly p1=pISet(1);
    311311
    312   // create tthe polynomial 2*x^3*z^2
     312  // create the polynomial 2*x^3*z^2
    313313  poly p2=p_ISet(2,R);
    314314  pSetExp(p2,1,3);
     
    346346  feInitResources(argv[0]);
    347347
    348   StringSetS("ressources in use (as reported by feStringAppendResources(0):\n");
     348  StringSetS("resources in use (as reported by feStringAppendResources(0):\n");
    349349  feStringAppendResources(0);
    350350
Note: See TracChangeset for help on using the changeset viewer.