zsh-workers
 help / color / mirror / code / Atom feed
From: Peter Stephenson <p.stephenson@samsung.com>
To: zsh-workers@zsh.org
Subject: Re: Floating point modulus
Date: Mon, 12 Jan 2015 09:56:28 +0000	[thread overview]
Message-ID: <20150112095628.4c6a30d5@pwslap01u.europe.root.pri> (raw)
In-Reply-To: <150111184632.ZM3188@torch.brasslantern.com>

On Sun, 11 Jan 2015 18:46:32 -0800
Bart Schaefer <schaefer@brasslantern.com> wrote:
> On Jan 11,  8:25pm, Peter Stephenson wrote:
> }
> } I'll leave that to you, but instead of an explicit rounding you could do
> } basically the same calculation but assigned to a variable declared as an
> } integer and output that.
> 
> Hm.  This seems like a bug:
> 
> % integer rnd
> % print -- $(( rnd = ((29.1 % 13.0 * 10) + 0.5) ))
> 31.500000000000014
> 
> Shouldn't the result of the $(( ... )) be an integer because rnd has been
> declared as an integer?

The result above is how I always thought it worked, actually.  The type
of the result isn't necessarily the type of the variable assigned to;
there's never been any code to propagate types back from assignments,
unlike in C.

Whether or not it should be is another question.  Looking at the doc,
with its references to C, you'd probably be entitled to expect assignment
types propagated the way they do in C.

In particular:

% integer foo
% (( foo )); print $?
1                                     # foo is zero, status is non-zero
% (( foo = 3.5/5.5 )); print $?
0                                     # foo is zero but
                                      # status is also zero as
				      # result is non zero
% (( foo )); print $?
1                                     # different result

You might think the status at least went with the assignment.

> I had to do this instead:

That's what I was expecting you to do.

pws


  reply	other threads:[~2015-01-12  9:56 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-09 12:43 PATCH: hist: remove wrong NULL terminator Mikael Magnusson
2015-01-09 17:45 ` Ray Andrews
2015-01-09 18:33   ` Lawrence Velázquez
2015-01-09 18:36     ` Lawrence Velázquez
2015-01-09 19:38   ` Mikael Magnusson
2015-01-09 21:39     ` Ray Andrews
2015-01-09 22:30       ` Peter Stephenson
2015-01-09 23:39         ` Ray Andrews
2015-01-10  0:39           ` Bart Schaefer
2015-01-10  7:45             ` Ray Andrews
2015-01-10 22:04               ` Lawrence Velázquez
2015-01-10 22:50                 ` Ray Andrews
2015-01-11  1:58                   ` Bart Schaefer
2015-01-11  5:46                     ` Ray Andrews
2015-01-11  7:10                       ` Floating point modulus Bart Schaefer
2015-01-11 17:33                         ` Peter Stephenson
2015-01-11 19:25                           ` Bart Schaefer
2015-01-11 19:25                         ` Ray Andrews
2015-01-11 20:00                           ` Bart Schaefer
2015-01-11 20:58                             ` Ray Andrews
2015-01-11 21:34                               ` Peter Stephenson
2015-01-12  0:18                                 ` Ray Andrews
2015-01-12 10:03                                   ` Peter Stephenson
2015-01-11 19:36                         ` Bart Schaefer
2015-01-11 20:01                           ` Peter Stephenson
2015-01-11 20:04                             ` Bart Schaefer
2015-01-11 20:25                               ` Peter Stephenson
2015-01-12  0:02                                 ` Ray Andrews
2015-01-12  2:23                                   ` Bart Schaefer
2015-01-12  2:46                                 ` Bart Schaefer
2015-01-12  9:56                                   ` Peter Stephenson [this message]
2015-01-12 13:49                                     ` Peter Stephenson
2015-01-12 16:35                                     ` Bart Schaefer
2015-01-12 16:45                                       ` Peter Stephenson
2015-01-12 11:36                           ` Vincent Lefevre
2015-01-10  7:08 ` PATCH: hist: remove wrong NULL terminator Bart Schaefer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150112095628.4c6a30d5@pwslap01u.europe.root.pri \
    --to=p.stephenson@samsung.com \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).