Changeset 84dc03b in git for Singular/LIB/schreyer.lib


Ignore:
Timestamp:
Jun 17, 2013, 3:34:46 PM (11 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
9e74fb504c32e244cf69ff7b05bc5d17d254d853
Parents:
7a084037acf0669aed29b40ab674ae5b62ef72f7
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-06-17 15:34:46+02:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-05-07 04:41:49+02:00
Message:
Fixed 'make check' without syzextra.so (no infinite idle wait)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/schreyer.lib

    r7a08403 r84dc03b  
    21372137      if( @DEBUG )
    21382138      {
     2139        "Loading the Debug version!";
     2140      } else
     2141      {
    21392142        "Loading the Release version!";
    21402143      }
     2144     
    21412145      load("syzextra.so");
    21422146
     
    21452149        listvar(Syzextra);
    21462150      }
    2147 
     2151     
    21482152      exportto(Top, Syzextra::ClearContent);
    21492153      exportto(Top, Syzextra::ClearDenominators);
     
    21892193    else
    21902194    {
    2191       if( @DEBUG )
    2192       {
    2193         "Loading the Debug version!";
    2194       }
    21952195
    21962196      load("syzextra.so");
     
    22522252  }
    22532253 
     2254  mod_assure_load();
     2255}
     2256
     2257
     2258
     2259static proc mod_assure_load()
     2260{
    22542261  if( !defined(GetInducedData) )
    22552262  {
    2256     ERROR("Sorry but we are missing the dynamic module (syzextra.so)...");
    2257   }
    2258 
     2263    "ERROR: Sorry but we are missing the dynamic module (syzextra.so)...";
     2264    $
     2265    // m2_end(666); // :(
     2266  }
    22592267}
    22602268
     
    26802688proc testSimple(list #)
    26812689{
     2690  mod_assure_load();
     2691
    26822692  def DEBUG = 1;
    26832693  if(size(#) > 0) { DEBUG = #[1]; }
Note: See TracChangeset for help on using the changeset viewer.