Changeset 7b9b8e5 in git for Singular/walk.cc


Ignore:
Timestamp:
Jul 27, 2016, 5:32:43 PM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
f9b0bddbfb9793b47a94a5d2aace6da9918e3c70
Parents:
e642218a429036f2f457d8045880dc747c8200a7
Message:
fix: Werror -> WerrorS if possible
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/walk.cc

    re64221 r7b9b8e5  
    55315531  if(weight_rad < 0)
    55325532  {
    5533     Werror("Invalid radius.\n");
     5533    WerrorS("Invalid radius.\n");
    55345534    return NULL;
    55355535  }
     
    55385538  if(pert_deg > nV || pert_deg < 1)
    55395539  {
    5540     Werror("Invalid perturbation degree.\n");
     5540    WerrorS("Invalid perturbation degree.\n");
    55415541    return NULL;
    55425542  }
     
    58765876  if(op_deg < 1 || tp_deg < 1 || op_deg > nV || tp_deg > nV)
    58775877  {
    5878     Werror("Invalid perturbation degree.\n");
     5878    WerrorS("Invalid perturbation degree.\n");
    58795879    return NULL;
    58805880  }
     
    63116311  if(weight_rad < 0)
    63126312  {
    6313     Werror("Invalid radius.\n");
     6313    WerrorS("Invalid radius.\n");
    63146314    return NULL;
    63156315  }
     
    63186318  if(op_deg < 1 || tp_deg < 1 || op_deg > nV || tp_deg > nV)
    63196319  {
    6320     Werror("Invalid perturbation degree.\n");
     6320    WerrorS("Invalid perturbation degree.\n");
    63216321    return NULL;
    63226322  }
     
    81138113  if(weight_rad < 0)
    81148114  {
    8115     Werror("Invalid radius.\n");
     8115    WerrorS("Invalid radius.\n");
    81168116    return NULL;
    81178117  }
     
    92199219  if(tp_deg < 1 || tp_deg > nV)
    92209220  {
    9221     Werror("Invalid perturbation degree.\n");
     9221    WerrorS("Invalid perturbation degree.\n");
    92229222    return NULL;
    92239223  }
Note: See TracChangeset for help on using the changeset viewer.