[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Help-glpk] Adding a new algorythem to GLPK
From: |
Andrew Makhorin |
Subject: |
Re: [Help-glpk] Adding a new algorythem to GLPK |
Date: |
Thu, 24 Jul 2008 17:36:26 +0400 |
> Has there been any thought to some sort of plug-in API in the GLPK code
> so that researchers and others can easily add their research or newly
> developed LP solution techniques into the GLPK framework?
In principle, there is no need in such plug-in. The application can
obtain all input data from the problem object (glp_prob) with glpk api
routines. The only api routine should be added, which stores the
solution back to the problem object. And may be another, virtual one,
which is defined by the user and called from glpsol as a serial solver.