Skip to content

Commit

Permalink
[Janitor mode] Fix tabs
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@18741 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Jan 23, 2014
1 parent 5a3d1aa commit ef3e06d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions SimulationRuntime/c/simulation/solver/linearSolverLapack.c
Expand Up @@ -114,8 +114,8 @@ int solveLapack(DATA *data, int sysNumber)
if(ACTIVE_STREAM(LOG_LS_V))
{
char buffer[16384];
/* A matrix */
/* A matrix */
infoStreamPrint(LOG_LS_V, 1, "A matrix [%dx%d]", n, n);
for(i=0; i<n; i++)
{
Expand All @@ -124,16 +124,16 @@ int solveLapack(DATA *data, int sysNumber)
sprintf(buffer, "%s%20.12g ", buffer, systemData->A[i + j*n]);
infoStreamPrint(LOG_LS_V, 0, "%s", buffer);
}
/* b vector */
/* b vector */
infoStreamPrint(LOG_LS_V, 1, "b vector [%d]", n);
for(i=0; i<n; i++)
{
buffer[0] = 0;
sprintf(buffer, "%s%20.12g ", buffer, systemData->b[i]);
infoStreamPrint(LOG_LS_V, 0, "%s", buffer);
}
messageClose(LOG_LS_V);
}

Expand Down

0 comments on commit ef3e06d

Please sign in to comment.