https://github.com/cvxgrp/scs
Raw File
Tip revision: feabd3a7e8bf7dfdef67f9e31d13bfcf88898525 authored by Brendan O'Donoghue on 14 March 2019, 12:09:05 UTC
set small_lp acceleration_lookback to 10
Tip revision: feabd3a
minunit.h
/* Taken from http://www.jera.com/techinfo/jtns/jtn002.html */

/* Simple Macros for testing */
#define mu_assert(message, test) \
  do {                           \
    if (!(test)) return message; \
  } while (0)
#define mu_run_test(test)         \
  do {                            \
    const char *message = test(); \
    tests_run++;                  \
    if (message) return message;  \
  } while (0)
back to top