Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
cheroy-ntia committed Dec 9, 2024
1 parent 9b865ee commit cc956f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
2 changes: 1 addition & 1 deletion include/ITS.Propagation.LFMF/LFMF.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#define __ITS_PROPAGATION_LFMF_LFMF_H__

#include <complex>
#include <cfloat>
#include <cfloat> ///< for DBL_EPSILON

#include "LFMFConfig.h"

Expand Down
15 changes: 3 additions & 12 deletions src/LFMF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,9 @@ namespace LFMF {
* @return error - Error code
*
*****************************************************************************/
ReturnCode LFMF(
double h_tx__meter,
double h_rx__meter,
double f__mhz,
double P_tx__watt,
double N_s,
double d__km,
double epsilon,
double sigma,
int pol,
Result *result
) {
ReturnCode LFMF(double h_tx__meter, double h_rx__meter, double f__mhz, double P_tx__watt,
double N_s, double d__km, double epsilon, double sigma, int pol, Result *result)
{
ReturnCode rtn = ValidatePolarization(pol);
if (rtn != SUCCESS)
return rtn;
Expand Down

0 comments on commit cc956f6

Please sign in to comment.