diff options
Diffstat (limited to 'src/mp-trigonometric.c')
-rw-r--r-- | src/mp-trigonometric.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mp-trigonometric.c b/src/mp-trigonometric.c index 2ebc676..4982041 100644 --- a/src/mp-trigonometric.c +++ b/src/mp-trigonometric.c @@ -13,8 +13,8 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - * 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301, USA. */ #include <stdlib.h> @@ -420,7 +420,7 @@ mp_atan(const MPNumber *x, MPAngleUnit unit, MPNumber *z) break; q *= 2; - + /* t = t / (√(t² + 1) + 1) */ mp_multiply(&t2, &t2, z); mp_add_integer(z, 1, z); |