Changeset a1fca5 in git


Ignore:
Timestamp:
Oct 27, 2016, 4:38:48 PM (8 years ago)
Author:
Yue <ren@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38077648e7239f98078663eb941c3c979511150a')
Children:
11a1ef2b5d6b9902d828bfcdb78722c538d58b1c
Parents:
33d8aac3b0b21f3ac24b80d3266698887ea532b4
git-author:
Yue <ren@mathematik.uni-kl.de>2016-10-27 16:38:48+02:00
git-committer:
Yue Ren <ren@mathematik.uni-kl.de>2017-06-08 18:10:27+02:00
Message:
new: gitfan.so
Files:
2 added
1 deleted
5 edited
1 moved

Legend:

Unmodified
Added
Removed
  • Singular/dyn_modules/Makefile.am

    r33d8aac ra1fca5  
    11ACLOCAL_AMFLAGS = -I ../m4
    22
    3 SUBDIRS=staticdemo bigintm syzextra pyobject customstd gfanlib python polymake singmathic Order
     3SUBDIRS=staticdemo bigintm syzextra pyobject customstd gfanlib python gitfan polymake singmathic Order
  • Singular/dyn_modules/gfanlib/Makefile.am

    r33d8aac ra1fca5  
    11ACLOCAL_AMFLAGS = -I ../../m4
    22
    3 SOURCES = singularWishlist.cc singularWishlist.h gfanlib_exceptions.h callgfanlib_conversion.cc callgfanlib_conversion.h bbcone.cc bbcone.h bbfan.cc bbfan.h bbpolytope.cc bbpolytope.h gfan.h gitfan.cc gitfan.h std_wrapper.cc std_wrapper.h tropicalDebug.h tropicalDebug.cc tropicalVarietyOfPolynomials.h tropicalVarietyOfPolynomials.cc ppinitialReduction.cc ppinitialReduction.h containsMonomial.cc containsMonomial.h adjustWeights.cc adjustWeights.h tropicalStrategy.cc tropicalStrategy.h initial.cc initial.h witness.cc witness.h lift.cc lift.h flip.cc flip.h tropicalCurves.cc tropicalCurves.h groebnerCone.cc groebnerCone.h startingCone.cc startingCone.h tropicalTraversal.cc tropicalTraversal.h tropicalVarietyOfIdeals.cc tropicalVarietyOfIdeals.h tropicalVariety.cc tropicalVariety.h groebnerFan.cc groebnerFan.h groebnerComplex.cc groebnerComplex.h tropical.cc tropical.h gfanlib.cc
     3SOURCES = singularWishlist.cc singularWishlist.h gfanlib_exceptions.h callgfanlib_conversion.cc callgfanlib_conversion.h bbcone.cc bbcone.h bbfan.cc bbfan.h bbpolytope.cc bbpolytope.h gfan.h std_wrapper.cc std_wrapper.h tropicalDebug.h tropicalDebug.cc tropicalVarietyOfPolynomials.h tropicalVarietyOfPolynomials.cc ppinitialReduction.cc ppinitialReduction.h containsMonomial.cc containsMonomial.h adjustWeights.cc adjustWeights.h tropicalStrategy.cc tropicalStrategy.h initial.cc initial.h witness.cc witness.h lift.cc lift.h flip.cc flip.h tropicalCurves.cc tropicalCurves.h groebnerCone.cc groebnerCone.h startingCone.cc startingCone.h tropicalTraversal.cc tropicalTraversal.h tropicalVarietyOfIdeals.cc tropicalVarietyOfIdeals.h tropicalVariety.cc tropicalVariety.h groebnerFan.cc groebnerFan.h groebnerComplex.cc groebnerComplex.h tropical.cc tropical.h gfanlib.cc
    44
    55MY_CPPFLAGS = -I${srcdir} -I${top_srcdir} -I${top_builddir} \
  • Singular/dyn_modules/gfanlib/gfanlib.cc

    r33d8aac ra1fca5  
    2424  bbfan_setup(p);
    2525  bbpolytope_setup(p);
    26   gitfan_setup(p);
    2726  tropical_setup(p);
    2827  return MAX_TOK;
  • Singular/dyn_modules/gitfan/gitfan.h

    r33d8aac ra1fca5  
    66#if HAVE_GFANLIB
    77
    8 #include "bbcone.h"
    9 #include "bbfan.h"
     8#include <Singular/dyn_modules/gfanlib/bbcone.h>
     9#include <Singular/dyn_modules/gfanlib/bbfan.h>
    1010
    1111#include "Singular/ipid.h"
  • configure.ac

    r33d8aac ra1fca5  
    244244AC_CONFIG_FILES([Singular/dyn_modules/singmathic/Makefile])
    245245AC_CONFIG_FILES([Singular/dyn_modules/staticdemo/Makefile])
     246AC_CONFIG_FILES([Singular/dyn_modules/gitfan/Makefile])
    246247
    247248AC_CONFIG_FILES([Singular/Makefile])
  • m4/options.m4

    r33d8aac ra1fca5  
    282282
    283283AC_DEFUN([SING_CHECK_PYTHON_MODULE],
    284 [ 
     284[
    285285AC_ARG_ENABLE(python_module, AS_HELP_STRING([--enable-python_module], [Enable python_module.so]),
    286286[if test $enableval = yes; then
     
    324324  bi_bigintm=false
    325325  bi_Order=false
     326  bi_gitfan=false
    326327
    327328
     
    356357       bigintm ) bi_bigintm=true ;;
    357358       Order ) bi_Order=true ;;
     359       gitfan ) bi_gitfan=true ;;
    358360      esac
    359361
     
    392394 AM_CONDITIONAL([SI_BUILTIN_BIGINTM], [test x$bi_bigintm = xtrue])
    393395 AM_CONDITIONAL([SI_BUILTIN_ORDER], [test x$bi_Order = xtrue])
     396 AM_CONDITIONAL([SI_BUILTIN_GITFAN], [test x$bi_gitfan = xtrue])
    394397
    395398 AC_MSG_CHECKING([BUILTIN_LIBS...])
Note: See TracChangeset for help on using the changeset viewer.