Changeset e6c5b8 in git for Singular


Ignore:
Timestamp:
Jun 28, 2016, 4:54:34 PM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'd08f5f0bb3329b8ca19f23b74cb1473686415c3a')
Children:
cbdceda53c960480a14e21f245e0dc4b93eda969
Parents:
4eec4608538ac0278dab309248d2621d1cd4e4d4
Message:
fix: error checks in finvar.lib, URL in surfex.lib
Location:
Singular/LIB
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/finvar.lib

    r4eec46 re6c5b8  
    14121412  { ERROR("the first parameter has to be a 1x2-matrix, i.e. the matrix
    14131413         returned by the procedure 'reynolds_molien', the second one
    1414          should be > 0 and there should be no more than 3 parameters;)";
     1414         should be > 0 and there should be no more than 3 parameters");
    14151415  }
    14161416}
     
    15921592 //---------------------- checking that the input is ok -----------------------
    15931593  if (d<=0)
    1594   { "  ERROR:   the second parameter should be > 0";
    1595      return();
    1596   }
     1594  { ERROR("the second parameter should be > 0"); }
    15971595  if (size(#)>1)
    1598   { "  ERROR:   there should be at most three parameters";
    1599     return();
    1600   }
     1596  { ERROR("there should be at most three parameters"); }
    16011597  if (size(#)==1)
    16021598  { if (typeof(#[1])<>"intvec")
    1603     { "  ERROR: the third parameter should be of type <intvec>";
    1604       return();
    1605     }
     1599    { ERROR("the third parameter should be of type <intvec>"); }
    16061600    if (size(#[1])<>2)
    1607     { "  ERROR: there should be two components in <intvec>";
    1608       return();
    1609     }
     1601    { ERROR("there should be two components in <intvec>"); }
    16101602    else
    16111603    { int cd=#[1][1];
     
    16131605    }
    16141606    if (step_fac<=0)
    1615     { "  ERROR: the second component of <intvec> should be > 0";
    1616       return();
    1617     }
     1607    { ERROR("the second component of <intvec> should be > 0"); }
    16181608    if (cd==0)
    16191609    { return(ideal(0));
  • Singular/LIB/surfex.lib

    r4eec46 re6c5b8  
    44info="
    55LIBRARY: surfex.lib      Procedures for visualizing and rotating surfaces.
    6 @texinfo
    7 @*         It is still an alpha version (see @uref{http://www.AlgebraicSurface.net})
    8 @end texinfo
    96AUTHOR: Oliver Labs
    107        This library uses the program surf
     
    1310
    1411NOTE:
    15 ttexinfo
     12@texinfo
     13 It is still an alpha version (see @uref{http://www.AlgebraicSurface.net})@*
    1614 This library requires the program surfex, surf and java to be installed.
    1715 The software is used for producing raytraced images of surfaces.
    1816 You can download @code{surfex} from @uref{http://www.surfex.AlgebraicSurface.net}
    19  @end texinfo
     17@end texinfo
    2018
    2119 surfex is a front-end for surf which aims to be easier to use than
Note: See TracChangeset for help on using the changeset viewer.