This file is indexed.

/usr/include/sdpa_call.h is in libsdpa-dev 7.3.11+dfsg-1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
/* -------------------------------------------------------------

This file is a component of SDPA
Copyright (C) 2004-2017 SDPA Project

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA

------------------------------------------------------------- */
/*--------------------------------------------------
  sdpa_call.h
--------------------------------------------------*/

/***************************************************
   In this header file,
   Do NOT use 'using namespace sdpa;'.
   Otherwise, if users define their OWN 'sdpa' namespace,
   it would be trouble.
***************************************************/


#ifndef __sdpa_call_h__
#define __sdpa_call_h__

#include <sdpa_right.h>
#include <sdpa_newton.h>
#include <sdpa_chordal.h>
#include <sdpa_parts.h>
#include <sdpa_struct.h>  
#include <cstdio>
#include <vector>
#include <algorithm>  

/*  The class list is generated by the following command
  $ grep class *.h | grep -v \; | grep -v SDPA | tr ':' ' ' | \
    awk '{print $2 " " $3 ";"}' 
*/

namespace sdpa {
  class BlockStruct;
  class Chordal;
  class Solutions;
  class InputData;
  class Residuals;
  class WorkVariables;
  class IO;
  class Jal;
  class Lal;
  class Newton;
  class ComputeTime;
  class Parameter;
  class StepLength;
  class DirectionParameter;
  class Switch;
  class AverageComplementarity;
  class RatioInitResCurrentRes;
  class SolveInfo;
  class Phase;
  class Vector;
  class BlockVector;
  class SparseMatrix;
  class DenseMatrix;
  class SparseLinearSpace;
  class DenseLinearSpace;
  class Time;

  // internal class of SDPA
  class IndexLIJv
  {
  public:
    int l,i,j;
    double value;
    IndexLIJv();
    ~IndexLIJv();
    static bool compare(IndexLIJv* a, IndexLIJv* b);
  };
};


class SDPA
{
public:

  enum PhaseType {noINFO, pFEAS,dFEAS,pdFEAS,pdINF,
		  pFEAS_dINF,pINF_dFEAS,pdOPT,pUNBD,dUNBD};
  enum ParameterType {PARAMETER_DEFAULT,
                      PARAMETER_UNSTABLE_BUT_FAST,
                      PARAMETER_STABLE_BUT_SLOW};
  
  enum ConeType {SDP, SOCP, LP};
  // SOCP is not implemented in the current version.
  
  enum SparseType {AUTO, SPARSE, DENSE};
  // when AUTO is set, the type is analyzed by the file extenstion.

  SDPA();
  ~SDPA();

  void setParameterType(ParameterType type = PARAMETER_DEFAULT);
  void setParameterMaxIteration(int maxIteration);
  void setParameterEpsilonStar (double epsilonStar);
  void setParameterLambdaStar  (double lambdaStar);
  void setParameterOmegaStar   (double omegaStar);
  void setParameterLowerBound  (double lowerBound);
  void setParameterUpperBound  (double upperBound);
  void setParameterBetaStar    (double betaStar);
  void setParameterBetaBar     (double betaBar);
  void setParameterGammaStar   (double gammaStar);
  void setParameterEpsilonDash (double epsilonDash);

  void setParameterPrintXVec(char* xPrint);
  void setParameterPrintXMat(char* XPrint);
  void setParameterPrintYMat(char* YPrint);
  void setParameterPrintInformation(char* infPrint);

  void setDisplay(FILE* Display  = stdout);
  void setResultFile(FILE* fpout = stdout);
  void setInitPoint(bool isInitPoint);

  void setNumThreads(int NumThreads=0);

  ParameterType getParameterType();
  int    getParameterMaxIteration();
  double getParameterEpsilonStar ();
  double getParameterLambdaStar  ();
  double getParameterOmegaStar   ();
  double getParameterLowerBound  ();
  double getParameterUpperBound  ();
  double getParameterBetaStar    ();
  double getParameterBetaBar     ();
  double getParameterGammaStar   ();
  double getParameterEpsilonDash ();

  char* getParameterPrintXVec();
  char* getParameterPrintXMat();
  char* getParameterPrintYMat();
  char* getParameterPrintInformation();

  FILE* getDisplay();
  FILE* getResultFile();
  bool getInitPoint();
  
  int getNumThreads();
  
  void inputConstraintNumber(int m);
  void inputBlockNumber(int nBlock);
  void inputBlockSize(int l, int size);
  void inputBlockType(int l, ConeType coneType);
  void inputCVec(int k, double value);
  void inputElement(int k, int l, int i, int j, double value,
		    bool inputCheck = false);
  void inputInitXVec(int k, double value);
  void inputInitXMat(int l, int i, int j, double value);
  void inputInitYMat(int l, int i, int j, double value);

  void initializeUpperTriangleSpace();
  void initializeUpperTriangle(bool inputTwiceCheck = false);
  void initializeSolve();
  void resetParameters();
  
  void solve();

  double* getResultXVec();
  double* getResultXMat(int l);
  double* getResultYMat(int l);
  double getPrimalObj();
  double getDualObj();
  double getPrimalError();
  double getDualError();
  double getDigits();
  int    getIteration();
  double getMu();
  double getDualityGap();
  PhaseType getPhaseValue();
  void   getPhaseString(char* str);
  double getSolveTime();

  int      getConstraintNumber();
  int      getBlockNumber();
  int      getBlockSize(int l);
  ConeType getBlockType(int l);
  
  void getDimacsError(double* DimacsError);
  void printDimacsError(double* DimacsError, char* printFormat,
			FILE* fp = stdout);
  
  void printResultXVec(FILE* fp = stdout);
  void printResultXMat(FILE* fp = stdout);
  void printResultYMat(FILE* fp = stdout);
  void printComputationTime(FILE* fp = stdout);
  void printParameters(FILE* fp = stdout);
  static void printSDPAVersion(FILE* fp = stdout);

  void readInput(char* filename, FILE* fpout = NULL,
		 SparseType type = AUTO);
  void readInit(char* filename, FILE* fpout = NULL,
		SparseType type = AUTO);
  void readParameter(char* filename, FILE* fpout = NULL);
  void writeInputSparse(char* filename, char* printFormat);
  void writeInitSparse(char* filename, char* printFormat);
  
  void terminate();
  void copyCurrentToInit();

  // setKappa is for only SDPA developers
  void setKappa(double KAPPA);

  // // for debugging, private is replaced by public
  // public:
private:
  double KAPPA;
  int  m;
  int  nBlock;
  FILE* Display;
  FILE* fpout;
  bool isInitPoint;
  ParameterType typeParameter;

  int pIteration;

  sdpa::ComputeTime            com;
  sdpa::Parameter              param;
  sdpa::BlockStruct            bs;
  sdpa::InputData              inputData;
  sdpa::Newton                 newton;
  sdpa::Chordal                chordal;
  sdpa::Solutions              currentPt;
  sdpa::WorkVariables          work;
  sdpa::DenseLinearSpace       initPt_xMat;
  sdpa::DenseLinearSpace       initPt_zMat;
  sdpa::Residuals              initRes;
  sdpa::Residuals              currentRes;
  sdpa::StepLength             alpha;
  sdpa::DirectionParameter     beta;
  sdpa::Switch                 reduction;
  sdpa::AverageComplementarity mu;
  sdpa::RatioInitResCurrentRes theta;
  sdpa::SolveInfo              solveInfo;
  sdpa::Phase                  phase;


  // temporary space to store
  // upper trianguler part non-zeros.
  vector<sdpa::IndexLIJv*> * NonZeroElements;
  void printNonZeroElements(FILE* fpout = stdout);
  void sortNonZeroElements();
  void checkNonZeroElements();
  void setNonZeroBlockStruct();
  void setNonZeroElements();

  void writeSparseLinearSpace(FILE* fp, char* printFormat,
			      sdpa::SparseLinearSpace& A, int k);
  void writeDenseLinearSpace(FILE* fp, char* printFormat,
			     sdpa::DenseLinearSpace& X, int k);

};

#endif // __sdpa_call_h__