00001 /* OOQP * 00002 * Authors: E. Michael Gertz, Stephen J. Wright * 00003 * (C) 2001 University of Chicago. See Copyright Notification in OOQP */ 00004 00005 #ifndef SUPERLUQPGENFACTORY 00006 #define SUPERLUQPGENFACTORY 00007 00008 #include "QpGenSparseSeq.h" 00009 00010 class SuperLUQpGen : public QpGenSparseSeq { 00011 public: 00012 SuperLUQpGen( int nx, int my, int mz, 00013 int nnzQ, int nnzA, int nnzC ); 00014 LinearSystem * makeLinsys( Data * prob_in ); 00015 }; 00016 00017 #endif