File: using.cc

package info (click to toggle)
sopt 2.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,932 kB
  • ctags: 1,162
  • sloc: cpp: 7,220; php: 287; python: 57; ansic: 33; makefile: 5
file content (13 lines) | stat: -rw-r--r-- 228 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <vector>

//! Sparsity Averaging Reweighted Analysis
class SARA : public std::vector<int> {
public:
  // Constructors
  using std::vector<int>::vector;
};

int main(int, char const**) {
  SARA s = {0, 0};
  return 0;
}