Index: /issm/trunk-jpl/src/c/solutions/ad_core.cpp
===================================================================
--- /issm/trunk-jpl/src/c/solutions/ad_core.cpp	(revision 13544)
+++ /issm/trunk-jpl/src/c/solutions/ad_core.cpp	(revision 13545)
@@ -26,16 +26,15 @@
 	
 	/*diverse: */
-	int         i;
-	int         dummy;
-
-	bool        isautodiff         = false;
-	int         num_dependents;
-	int         num_independents;
-	char*       driver=NULL;
-	size_t   tape_stats[11];
+	int     i;
+	int     dummy;
+	int     num_dependents;
+	int     num_independents;
+	bool    isautodiff       = false;
+	char   *driver           = NULL;
+	size_t  tape_stats[11];
 
 	/*state variables: */
-	IssmDouble *axp                = NULL;
-	double     *xp                 = NULL;
+	IssmDouble *axp = NULL;
+	double     *xp  = NULL;
 
 	/*AD mode on?: */
@@ -72,13 +71,13 @@
 
 			/* these are always needed regardless of the interpreter */
-                        anEDF_for_solverx_p->dp_x=xNew<double>(anEDF_for_solverx_p->max_n);
-                        anEDF_for_solverx_p->dp_y=xNew<double>(anEDF_for_solverx_p->max_m);
+			anEDF_for_solverx_p->dp_x=xNew<double>(anEDF_for_solverx_p->max_n);
+			anEDF_for_solverx_p->dp_y=xNew<double>(anEDF_for_solverx_p->max_m);
 
 			if (strcmp(driver,"fos_forward")==0){
 				
 				int     anIndepIndex;
-				double *tangentDir=NULL;
-				double *jacTimesTangentDir=NULL;
-				double *theOutput=NULL;
+				double *tangentDir         = NULL;
+				double *jacTimesTangentDir = NULL;
+				double *theOutput          = NULL;
 				
 				/*retrieve direction index: */
@@ -113,12 +112,11 @@
 			else if ((strcmp(driver,"fov_forward")==0) || (strcmp(driver,"fov_forward_all")==0)){
 				
-				int* indepIndices=NULL;
-				int tangentDirNum;
-				int dummy;
-				double **jacTimesSeed=NULL;
-				double **seed=NULL;
-				double *theOutput=NULL;
+				int      tangentDirNum;
+				int      dummy;
+				int     *indepIndices  = NULL;
+				double **jacTimesSeed  = NULL;
+				double **seed          = NULL;
+				double  *theOutput     = NULL;
 				std::set<unsigned int> anIndexSet;
-
 					
 				/*retrieve directions:*/
@@ -302,4 +300,5 @@
 			}
 			if(VerboseAutodiff())_pprintLine_("   end AD core");
+			/*}}}*/
 			
 			/*Free resources: */
Index: /issm/trunk-jpl/src/c/solutions/issm.cpp
===================================================================
--- /issm/trunk-jpl/src/c/solutions/issm.cpp	(revision 13544)
+++ /issm/trunk-jpl/src/c/solutions/issm.cpp	(revision 13545)
@@ -75,7 +75,6 @@
 	/*call cores: */
 	_pprintLine_("call computational core:");
-	profiler->Tag(StartCore); solutioncore(femmodel); profiler->Tag(FinishCore); 
-	profiler->Tag(StartAdCore); ad_core(femmodel); profiler->Tag(FinishAdCore); 
-	
+	profiler->Tag(StartCore);   solutioncore(femmodel); profiler->Tag(FinishCore); 
+	profiler->Tag(StartAdCore); ad_core(femmodel);      profiler->Tag(FinishAdCore); 
 	ProfilerEnd(profiler,femmodel->results,femmodel->parameters);
 
Index: /issm/trunk-jpl/src/c/solutions/solutions.h
===================================================================
--- /issm/trunk-jpl/src/c/solutions/solutions.h	(revision 13544)
+++ /issm/trunk-jpl/src/c/solutions/solutions.h	(revision 13545)
@@ -57,4 +57,3 @@
 void AdjointCorePointerFromSolutionEnum(void (**padjointcore)(FemModel*),int solutiontype);
 
-
 #endif
