/* $Id$ * * Name: exprLog.hpp * Author: Pietro Belotti * Purpose: definition of logarithm * * (C) Carnegie-Mellon University, 2006-10. * This file is licensed under the Eclipse Public License (EPL) */ #ifndef COUENNE_EXPRLOG_HPP #define COUENNE_EXPRLOG_HPP #include "CouenneExprInv.hpp" #include "CouenneExpression.hpp" namespace Couenne { /// class logarithm, \f$ \log f(x)\f$ class COUENNELIB_EXPORT exprLog: public exprUnary { public: /// Constructors, destructor exprLog (expression *al): exprUnary (al) {} // non-leaf expression, with argument list /// cloning method expression *clone (Domain *d = NULL) const {return new exprLog (argument_ -> clone (d));} /// the operator's function inline unary_function F () {return log;} /// print operator std::string printOp () const {return "log";} /// return l-2 norm of gradient at given point CouNumber gradientNorm (const double *x); /// differentiation expression *differentiate (int index); /// Get lower and upper bound of an expression (if any) void getBounds (expression *&, expression *&); /// Get value of lower and upper bound of an expression (if any) void getBounds (CouNumber &lb, CouNumber &ub); /// generate equality between *this and *w void generateCuts (expression *w, //const OsiSolverInterface &si, OsiCuts &cs, const CouenneCutGenerator *cg, t_chg_bounds * = NULL, int = -1, CouNumber = -COUENNE_INFINITY, CouNumber = COUENNE_INFINITY); /// code for comparisons virtual enum expr_type code () {return COU_EXPRLOG;} /// implied bound processing bool impliedBound (int, CouNumber *, CouNumber *, t_chg_bounds *, enum auxSign = expression::AUX_EQ); /// set up branching object by evaluating many branching points for /// each expression's arguments virtual CouNumber selectBranch (const CouenneObject *obj, const OsiBranchingInformation *info, expression * &var, double * &brpts, double * &brDist, // distance of current LP // point to new convexifications int &way); /// return true if feasible virtual bool isBijective() const {return true;} /// inverse of this operator virtual CouNumber inverse(expression *vardep) const { return exp((*vardep)()); } /// can this expression be further linearized or are we on its /// concave ("bad") side virtual bool isCuttable (CouenneProblem *problem, int index) const; }; } #endif