Skip to content

Commit

Permalink
version-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SSingh087 committed Jun 13, 2022
1 parent 613b169 commit 8226b00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lensGW/solver/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def OneDeflector(source_ra,
solverKwargs = {'Scaled' : kwargs['Scaled'],
'ScaleFactor' : kwargs['ScaleFactor'],
'SearchWindowMacro': kwargs['SearchWindowMacro'],
'PixelsMacro' : 10**3,
'PrecisionLimit' : 10**(-20),
'PixelsMacro' : 10**2,
'PrecisionLimit' : 10**(-10),
'OverlapDistMacro' : 10**(-15), # prescription: solutions whose distance is less than 10**(-15) rad (\sim 2*1.e-4 micro arcsec) are considered overlaps
'NearSource' : False,
'Optimization' : kwargs['Optimization'],
Expand Down
4 changes: 2 additions & 2 deletions lensGW/waveform/waveform_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def eval_param(source_ra, source_dec, lens_ra, lens_dec,
'ScaleFactor' : thetaE_PM, # and the scale factor
'SearchWindowMacro': 4*thetaE_PM/thetaE_PM,
'SearchWindow' : 4*thetaE_PM/thetaE_PM,
'OnlyMacro' : 'False',
'OnlyMacro' : 'True',
'Optimization' : optim}

Img_ra, Img_dec, pixel_width = microimages(source_ra = source_ra,
Expand All @@ -75,4 +75,4 @@ def eval_param(source_ra, source_dec, lens_ra, lens_dec,
kwargs_lens = kwargs_lens_list,
**solver_kwargs)

return Img_ra, Img_dec, kwargs_lens_list, solver_kwargs
return Img_ra, Img_dec, kwargs_lens_list, solver_kwargs

0 comments on commit 8226b00

Please sign in to comment.