Files
mfem/general/table.cpp
T
2011-04-08 15:27:24 -07:00

451 lines
8.3 KiB
C++

// Copyright (c) 2010, Lawrence Livermore National Security, LLC. Produced at
// the Lawrence Livermore National Laboratory. LLNL-CODE-443211. All Rights
// reserved. See file COPYRIGHT for details.
//
// This file is part of the MFEM library. For more information and source code
// availability see http://mfem.googlecode.com.
//
// MFEM is free software; you can redistribute it and/or modify it under the
// terms of the GNU Lesser General Public License (as published by the Free
// Software Foundation) version 2.1 dated February 1999.
// Implementation of data types Table.
#include <iostream>
#include <iomanip>
#include "array.hpp"
#include "table.hpp"
Table::Table (int dim, int connections_per_row)
{
int i, j, sum = dim * connections_per_row;
size = dim;
I = new int[size+1];
J = new int[sum];
I[0] = 0;
for (i = 1; i <= size; i++)
{
I[i] = I[i-1] + connections_per_row;
for (j = I[i-1]; j < I[i]; j++) { J[j] = -1; }
}
}
Table::Table (int nrows, int *partitioning)
{
size = nrows;
I = new int[size+1];
J = new int[size];
for (int i = 0; i < size; i++)
{
I[i] = i;
J[i] = partitioning[i];
}
I[size] = size;
}
void Table::MakeI (int nrows)
{
SetDims (nrows, 0);
for (int i = 0; i <= nrows; i++)
I[i] = 0;
}
void Table::MakeJ()
{
int i, j, k;
for (k = i = 0; i < size; i++)
j = I[i], I[i] = k, k += j;
J = new int[I[size]=k];
}
void Table::AddConnections (int r, int *c, int nc)
{
int *jp = J+I[r];
for (int i = 0; i < nc; i++)
jp[i] = c[i];
I[r] += nc;
}
void Table::ShiftUpI()
{
for (int i = size; i > 0; i--)
I[i] = I[i-1];
I[0] = 0;
}
void Table::SetSize(int dim, int connections_per_row)
{
SetDims (dim, dim * connections_per_row);
if (size > 0)
{
I[0] = 0;
for (int i = 0, j = 0; i < size; i++)
{
int end = I[i] + connections_per_row;
I[i+1] = end;
for ( ; j < end; j++) J[j] = -1;
}
}
}
void Table::SetDims(int rows, int nnz)
{
int j;
j = (I) ? (I[size]) : (0);
if (size != rows)
{
size = rows;
if (I) delete [] I;
I = (rows >= 0) ? (new int[rows+1]) : (NULL);
}
if (j != nnz)
{
if (J) delete [] J;
J = (nnz > 0) ? (new int[nnz]) : (NULL);
}
if (size >= 0)
{
I[0] = 0;
I[size] = nnz;
}
}
int Table::operator() (int i, int j) const
{
if ( i>=size || i<0 )
return -1;
int k, end = I[i+1];
for(k=I[i]; k<end; k++)
if (J[k]==j)
return k;
else if (J[k]==-1)
return -1;
return -1;
}
void Table::GetRow(int i, Array<int> &row) const
{
const int *jp = GetRow(i), n = RowSize(i);
row.SetSize(n);
for(int i = 0; i < n; i++)
row[i] = jp[i];
}
void Table::SetIJ(int *newI, int *newJ, int newsize)
{
delete [] I;
delete [] J;
I = newI;
J = newJ;
if (newsize >= 0)
size = newsize;
}
int Table::Push(int i, int j)
{
#ifdef MFEM_DEBUG
if (i >= size || i < 0)
{
cerr << "Table::Push() i = " << i << endl;
mfem_error();
}
#endif
for(int k = I[i], end = I[i+1]; k < end; k++)
if (J[k] == j)
return k;
else if (J[k] == -1)
{
J[k] = j;
return k;
}
cerr << "Table::Push() : (i,j) = (" << i << ", " << j << ")" << endl;
mfem_error();
return -1;
}
void Table::Finalize()
{
int i, j, end, sum = 0, n = 0, newI = 0;
for(i=0; i<I[size]; i++)
if (J[i] != -1)
sum++;
if (sum != I[size]){
int *NewJ = new int[sum];
for(i=0; i<size; i++){
end = I[i+1];
for(j=I[i]; j<end; j++){
if (J[j] == -1) break;
NewJ[ n++ ] = J[j];
}
I[i] = newI;
newI = n;
}
I[size] = sum;
delete [] J;
J = NewJ;
#ifdef MFEM_DEBUG
if (sum != n)
mfem_error ("Table::Finalize");
#endif
}
}
int Table::Width() const
{
int width = -1, nnz = I[size];
for (int k = 0; k < nnz; k++)
if (J[k] > width) width = J[k];
return width + 1;
}
void Table::Print(ostream & out, int width) const
{
int i, j;
out << setiosflags(ios::scientific | ios::showpos);
for(i = 0; i < size; i++) {
out << "[row " << i << "]\n";
for (j = I[i]; j < I[i+1]; j++)
{
out << setw(3) << J[j] << " ";
if ( !((j+1-I[i]) % width) )
out << endl;
}
out << endl;
}
out << endl;
}
void Table::Save(ostream & out) const
{
int i;
out << size << '\n';
for (i = 0; i <= size; i++)
out << I[i] << '\n';
for (i = 0; i < I[size]; i++)
out << J[i] << '\n';
}
Table::~Table ()
{
if (I) delete [] I;
if (J) delete [] J;
}
void Transpose (const Table &A, Table &At, int _ncols_A)
{
const int *i_A = A.GetI();
const int *j_A = A.GetJ();
const int nrows_A = A.Size();
const int ncols_A = (_ncols_A < 0) ? A.Width() : _ncols_A;
const int nnz_A = i_A[nrows_A];
At.SetDims (ncols_A, nnz_A);
int *i_At = At.GetI();
int *j_At = At.GetJ();
for (int i = 0; i <= ncols_A; i++)
i_At[i] = 0;
for (int i = 0; i < nnz_A; i++)
i_At[j_A[i]+1]++;
for (int i = 1; i < ncols_A; i++)
i_At[i+1] += i_At[i];
for (int i = 0; i < nrows_A; i++)
for (int j = i_A[i]; j < i_A[i+1]; j++)
j_At[i_At[j_A[j]]++] = i;
for (int i = ncols_A; i > 0; i--)
i_At[i] = i_At[i-1];
i_At[0] = 0;
}
void Mult (const Table &A, const Table &B, Table &C)
{
int i, j, k, l, m;
const int *i_A = A.GetI();
const int *j_A = A.GetJ();
const int *i_B = B.GetI();
const int *j_B = B.GetJ();
const int nrows_A = A.Size();
const int nrows_B = B.Size();
const int ncols_A = A.Width();
const int ncols_B = B.Width();
if (ncols_A != nrows_B)
mfem_error ("Mult (Table &A, Table &B, Table &C)");
Array<int> B_marker (ncols_B);
for (i = 0; i < ncols_B; i++)
B_marker[i] = -1;
int counter = 0;
for (i = 0; i < nrows_A; i++)
{
for (j = i_A[i]; j < i_A[i+1]; j++)
{
k = j_A[j];
for (l = i_B[k]; l < i_B[k+1]; l++)
{
m = j_B[l];
if (B_marker[m] != i)
{
B_marker[m] = i;
counter++;
}
}
}
}
C.SetDims (nrows_A, counter);
for (i = 0; i < ncols_B; i++)
B_marker[i] = -1;
int *i_C = C.GetI();
int *j_C = C.GetJ();
counter = 0;
for (i = 0; i < nrows_A; i++)
{
i_C[i] = counter;
for (j = i_A[i]; j < i_A[i+1]; j++)
{
k = j_A[j];
for (l = i_B[k]; l < i_B[k+1]; l++)
{
m = j_B[l];
if (B_marker[m] != i)
{
B_marker[m] = i;
j_C[counter] = m;
counter++;
}
}
}
}
}
STable::STable (int dim, int connections_per_row) :
Table(dim, connections_per_row)
{}
int STable::operator() (int i, int j) const
{
if (i < j)
return Table::operator()(i,j);
else
return Table::operator()(j,i);
}
int STable::Push( int i, int j ){
if (i < j)
return Table::Push(i, j);
else
return Table::Push(j, i);
}
DSTable::DSTable(int nrows)
{
Rows = new Node*[nrows];
for (int i = 0; i < nrows; i++)
{
Rows[i] = NULL;
}
NumRows = nrows;
NumEntries = 0;
}
int DSTable::Push_(int r, int c)
{
#ifdef MFEM_DEBUG
if (r < 0 || r >= NumRows)
mfem_error("DSTable::Push_()");
#endif
Node *n;
for (n = Rows[r]; n != NULL; n = n->Prev)
{
if (n->Column == c)
{
return(n->Index);
}
}
#ifdef MFEM_USE_MEMALLOC
n = NodesMem.Alloc ();
#else
n = new Node;
#endif
n->Column = c;
n->Index = NumEntries;
n->Prev = Rows[r];
Rows[r] = n;
return(NumEntries++);
}
int DSTable::Index(int r, int c) const
{
#ifdef MFEM_DEBUG
if (r < 0)
mfem_error("DSTable::Index()");
#endif
if (r >= NumRows)
return(-1);
for (Node *n = Rows[r]; n != NULL; n = n->Prev)
{
if (n->Column == c)
{
return(n->Index);
}
}
return(-1);
}
DSTable::~DSTable()
{
#ifdef MFEM_USE_MEMALLOC
// NodesMem.Clear(); // this is done implicitly
#else
for (int i = 0; i < NumRows; i++)
{
Node *na, *nb = Rows[i];
while (nb != NULL)
{
na = nb;
nb = nb->Prev;
delete na;
}
}
#endif
delete [] Rows;
}