Audrius Kabasinskas

First Comment
First Question
  • Total activity 4
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 1

Activity overview

Latest activity by Audrius Kabasinskas
  • Audrius Kabasinskas commented,

    if this happens at stage of initial point selection, so how I can prevent this? I'd like to try something like numerator = 10 denominator = 0 result = numerator / denominator if denominator != 0 el...

  • Audrius Kabasinskas commented,

    this is good. what if at initial point we get division by 0? i'v changed the objective a little bit to force get division by 0: import gurobipy as gpfrom gurobipy import GRB def printsol(m, x):    ...

  • Audrius Kabasinskas created a post,

    setting division in objective function

    Answered

    i took example from https://docs.gurobi.com/projects/examples/en/current/examples/gc_funcnonlinear.html#sectiongc-funcnonlinearexamples  and changed objective function to division. The code stopped...