mwcsr

An R package for solving maximum-weight connected subrgaph problem and it's variants

https://github.com/ctlab/mwcsr

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.3%) to scientific vocabulary

Keywords

cplex r
Last synced: 6 months ago · JSON representation

Repository

An R package for solving maximum-weight connected subrgaph problem and it's variants

Basic Info
  • Host: GitHub
  • Owner: ctlab
  • License: other
  • Language: C++
  • Default Branch: master
  • Homepage:
  • Size: 12.6 MB
Statistics
  • Stars: 7
  • Watchers: 5
  • Forks: 3
  • Open Issues: 0
  • Releases: 0
Topics
cplex r
Created over 8 years ago · Last pushed almost 2 years ago
Metadata Files
Readme License

README.Rmd

---
output: github_document
params:
   cplex_dir: !r Sys.getenv("CPLEX_HOME")
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

[![Build
Status](https://travis-ci.org/ctlab/mwcsr.svg?branch=master)](https://travis-ci.org/ctlab/mwcsr) [![codecov](https://codecov.io/github/ctlab/mwcsr/branch/master/graphs/badge.svg)](https://codecov.io/gh/ctlab/mwcsr/branch/master) 

# mwcsr 

A package for solving maximum weight connected subgraph (MWCS) problem and its variants.

Supported MWCS variants are:

* classic (simple) MWCS, where only vertices are weighted;
* budget MWCS, where vertices are parametrized by costs and overall budget is limited; 
* generalized MWCS (GMWCS), where both vertices and edges are weighted;
* signal generalized MWCS (SGMWCS), where both vertices and edges are marked with weighted "signals", and a weight of a subgraph is calculated as a sum of weights of its unique signals.

Currently, four solvers are supported:

* heuristic relax-and-cut solver `rmwcs_solver` for MWCS and Budget MWCS;
* heuristic relax-and-cut solver `rnc_solver` for MWCS/GMWCS/SGMWCS;
* heuristic simulated annealing solver `annealing_solver` for MWCS/GMWCS/SGMWCS;
* exact (if CPLEX library is available) or heuristic (without CPLEX) solver `virgo_solver` 
for MWCS/GMWCS/SGMWCS. 


## Installation

The package can be installed from GitHub using `devtools`:

```{r eval=F}
library(devtools)
install_github("ctlab/mwcsr")
```

## Quick start

Load `mwcsr`, as well as `igraph` package, which contains functions for graph manipulations.

```{r message=FALSE}
library(mwcsr)
library(igraph)
```

Let's load an example instance of MWCS problem. The instance is a simple `igraph` object with `weight` vertex attribute.

```{r}
data("mwcs_example")
print(mwcs_example)
summary(V(mwcs_example)$weight)
```

Now let us initialize a heuristic relax-and-cut MWCS solver (Alvarez-Miranda and Sinnl, 2017):

```{r}
rcsolver <- rmwcs_solver()
```

Now we can use this solver to solve the example instance:

```{r}
m <- solve_mwcsp(rcsolver, mwcs_example)
print(m$graph)
print(m$weight)
```

## Using exact CPLEX-based Virgo solver

The `mwcsr` package also provide and interface to exact CPLEX-based Virgo solver  
(https://github.com/ctlab/virgo-solver) which can be used to solve
MWCS, GMWCS and SGMWCS instances to provable optimality.

To setup this solver CPLEX libraries has to be available. 
CPLEX can be downloaded from the official web-site:
https://www.ibm.com/products/ilog-cplex-optimization-studio.
Free licence can be obtained for academic purposes.
    
First, initialize `cplex_dir` variable to contain path to CPLEX libraries (for example, `r params$cplex_dir`). 

    
```{r eval=FALSE}
cplex_dir <- ''
```

```{r echo=FALSE}
cplex_dir <- params$cplex_dir
```

Then initialize the solver:

```{r}
vsolver <- virgo_solver(cplex_dir=cplex_dir)
```

And run it on the same MWCS instance:

```{r}
m <- solve_mwcsp(vsolver, mwcs_example)
print(m$graph)
```

While the solution is a bit different its weight is the same as found before.
The solutions differs only in zero-weight vertices.

```{r}
get_weight(m$graph)
```

However, Virgo guarantees that the result is optimal, unless the solver was interrupted 
on time limit.

```{r}
m$solved_to_optimality
```


Next, consider a GMWCS instance which additionally has edge weights:

```{r}
data("gmwcs_example")
gmwcs_example
summary(E(gmwcs_example)$weight)
```

The same solver can be used to solve this instance:

```{r}
m <- solve_mwcsp(vsolver, gmwcs_example)
print(m$graph)
get_weight(m$graph)
```

Finally, let consider an SGMWCS instance. The weights of nodes and edges are defined not 
directly, but through the `signals` attribute:

```{r}
data("sgmwcs_example")
sgmwcs_example
str(V(sgmwcs_example)$signal)
str(E(sgmwcs_example)$signal)
head(sgmwcs_example$signals)
```

Again, we can solve this instance with Virgo solver:

```{r}
m <- solve_mwcsp(vsolver, sgmwcs_example)
print(m$graph)
get_weight(m$graph)
```

## Running Virgo heuristics without CPLEX

In case CPLEX is not available, Virgo solver can be run in the heuristic mode. 
Just set `cplex_dir` parameter to `NULL`:

```{r}
vhsolver <- virgo_solver(cplex_dir=NULL)
```

While the results are not optimal, sometimes they can be enough for practical applications:

```{r}
m <- solve_mwcsp(vhsolver, mwcs_example)
get_weight(m$graph)
m$solved_to_optimality

m <- solve_mwcsp(vhsolver, gmwcs_example)
get_weight(m$graph)

m <- solve_mwcsp(vhsolver, sgmwcs_example)
get_weight(m$graph)
```


Owner

  • Name: Computer Technologies Laboratory
  • Login: ctlab
  • Kind: organization

GitHub Events

Total
  • Pull request event: 1
  • Fork event: 1
Last Year
  • Pull request event: 1
  • Fork event: 1

Committers

Last synced: over 2 years ago

All Time
  • Total Commits: 200
  • Total Committers: 5
  • Avg Commits per committer: 40.0
  • Development Distribution Score (DDS): 0.5
Past Year
  • Commits: 8
  • Committers: 2
  • Avg Commits per committer: 4.0
  • Development Distribution Score (DDS): 0.125
Top Committers
Name Email Commits
Alexander Loboda l****a@r****u 100
Alexander Loboda a****a@g****m 68
Alexey Sergushichev a****x@g****m 19
Nikolai n****j@g****m 11
Alexey Sergushichev a****g@i****u 2
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: almost 2 years ago

All Time
  • Total issues: 3
  • Total pull requests: 2
  • Average time to close issues: 5 days
  • Average time to close pull requests: less than a minute
  • Total issue authors: 2
  • Total pull request authors: 1
  • Average comments per issue: 8.33
  • Average comments per pull request: 0.0
  • Merged pull requests: 2
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • hugoberta (2)
  • pedriniedoardo (1)
Pull Request Authors
  • assaron (2)
Top Labels
Issue Labels
bug (1)
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • cran 252 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 1
  • Total versions: 6
  • Total maintainers: 1
cran.r-project.org: mwcsr

Solvers for Maximum Weight Connected Subgraph Problem and Its Variants

  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 252 Last month
Rankings
Forks count: 14.2%
Stargazers count: 19.3%
Dependent repos count: 23.9%
Average: 26.2%
Dependent packages count: 28.7%
Downloads: 44.9%
Maintainers (1)
Last synced: 6 months ago

Dependencies

DESCRIPTION cran
  • R >= 3.5 depends
  • Rcpp * imports
  • igraph * imports
  • methods * imports
  • BioNet * suggests
  • DLBCL * suggests
  • knitr * suggests
  • mathjaxr * suggests
  • rmarkdown * suggests
  • roxygen2 * suggests
  • testthat * suggests