diff --git a/modules/mol/alg/src/distance_rmsd_test.hh b/modules/mol/alg/src/distance_rmsd_test.hh
index 346ed1cc041a264b7236968d92bee9d4a84eaea7..12e4ec86646d7241aa6649f19b512f54cb95df17 100644
--- a/modules/mol/alg/src/distance_rmsd_test.hh
+++ b/modules/mol/alg/src/distance_rmsd_test.hh
@@ -53,10 +53,11 @@ namespace ost { namespace mol { namespace alg {
 /// residue properties. Specifically, the local residue-based Distance RMSD score is stored in a float property 
 /// as the provided string, while the residue-based sum of squared distances and the number of distances checked 
 /// are saved in two properties named <string>_sum (a float property) and <string>_count (an int property).
-std::pair<Real,long int> DistanceRMSDTest(const EntityView& mdl,
-                          const GlobalRDMap& glob_dist_list,
-                          Real cap_distance, int sequence_separation = 0,
-                          const String& local_drmsdt_property_string="");
+std::pair<Real,long int> DLLEXPORT_OST_MOL_ALG 
+DistanceRMSDTest(const EntityView& mdl,
+                 const GlobalRDMap& glob_dist_list,
+                 Real cap_distance, int sequence_separation = 0,
+                 const String& local_drmsdt_property_string="");
 
 
 /// \brief Computes the Distance RMSD Test given a list of distances to check and a model 
@@ -67,7 +68,9 @@ std::pair<Real,long int> DistanceRMSDTest(const EntityView& mdl,
 ///
 /// A sequence separation parameter can be passed to the function. If this happens, only distances between residues
 /// whose separation is higher than the provided parameter are considered when computing the score.
-Real DLLEXPORT_OST_MOL_ALG DRMSD(const EntityView& v, const GlobalRDMap& global_dist_list, Real cap_distance, int sequence_separation=0);
+Real DLLEXPORT_OST_MOL_ALG DRMSD(const EntityView& v, 
+                                 const GlobalRDMap& global_dist_list, 
+                                 Real cap_distance, int sequence_separation=0);
 
 }}}
 
diff --git a/modules/mol/alg/src/local_dist_diff_test.hh b/modules/mol/alg/src/local_dist_diff_test.hh
index 6f0d2c20f7530e8ba98967612c7d7906cfc547b7..f9013c97566e4edb261bb3ee4e0a2b8be90f53a4 100644
--- a/modules/mol/alg/src/local_dist_diff_test.hh
+++ b/modules/mol/alg/src/local_dist_diff_test.hh
@@ -46,11 +46,10 @@ namespace ost { namespace mol { namespace alg {
 /// residue properties. Specifically, the local residue-based lddt score is stored in a float property named
 /// as the provided string, while the residue-based number of conserved and total distances are saved in two 
 /// int properties named <string>_conserved and <string>_total.
-std::pair<long int,long int> DLLEXPORT_OST_MOL_ALG LocalDistDiffTest(const EntityView& mdl,
-                                         const GlobalRDMap& dist_list,
-                                         std::vector<Real> cutoff_list,
-                                         int sequence_separation = 0, 
-                                         const String& local_ldt_property_string="");
+std::pair<long int,long int> DLLEXPORT_OST_MOL_ALG 
+LocalDistDiffTest(const EntityView& mdl, const GlobalRDMap& dist_list,
+                  std::vector<Real> cutoff_list, int sequence_separation = 0, 
+                  const String& local_ldt_property_string="");
 
 /// \brief Calculates the Local Distance Difference Score for a given model with respect to a given target
 ///