Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Summing. I'm still living in imperative land.
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  5 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Chui Tey  
View profile  
 More options Sep 24 2007, 12:21 am
Newsgroups: comp.lang.prolog
From: Chui Tey <t...@cognoware.com>
Date: Sun, 23 Sep 2007 21:21:27 -0700
Local: Mon, Sep 24 2007 12:21 am
Subject: Summing. I'm still living in imperative land.
Hi all,

I've got a program here:

% different sized nuts in the toolbox
t(1).
t(2).
t(4).

% build a list of nuts
ts([]).
ts([t(H)|Ts]) :- ts(Ts), t(H).

% get sum of nut sizes after
% arranging nuts as a palindrome
go(SumOfH):-
  length(Ts, 3),
  ts(Ts),
  reverse(Ts, Ts),
  findall(H, (t(H), memberchk(t(H), Ts)), Hs),
  sumlist(Hs, SumOfH),
  display(Ts).

The question is: is there a simpler way to do this without memberchk?
memberchk seems awfully redundant.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Markus Triska  
View profile  
 More options Sep 24 2007, 1:36 am
Newsgroups: comp.lang.prolog
From: Markus Triska <tri...@logic.at>
Date: Mon, 24 Sep 2007 07:36:17 +0200
Local: Mon, Sep 24 2007 1:36 am
Subject: Re: Summing. I'm still living in imperative land.

Chui Tey <t...@cognoware.com> writes:
> ts([t(H)|Ts]) :- ts(Ts), t(H).

Why carry the t/1 functor with you? Just collect the sizes, like:

  ts([T|Ts]) :- ts(Ts), t(T).

>   display(Ts).

You want a relation sum_nuts/2 between a sum S and a list of
palindromic nut sizes summing to S. If you define just that, the
toplevel will handle display for you.

--
comp.lang.prolog FAQ: http://www.logic.at/prolog/faq/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chui Tey  
View profile  
 More options Sep 24 2007, 2:18 am
Newsgroups: comp.lang.prolog
From: Chui Tey <t...@cognoware.com>
Date: Sun, 23 Sep 2007 23:18:46 -0700
Local: Mon, Sep 24 2007 2:18 am
Subject: Re: Summing. I'm still living in imperative land.
On Sep 24, 3:36 pm, Markus Triska <tri...@logic.at> wrote:

> Chui Tey <t...@cognoware.com> writes:
> > ts([t(H)|Ts]) :- ts(Ts), t(H).

> Why carry the t/1 functor with you? Just collect the sizes, like:

>   ts([T|Ts]) :- ts(Ts), t(T).

I was trying to do this (Python equivalent, apologies):

  # height, thickness, size of the head
  nuts = [(5, 10, 2),
          (8, 10, 3), ...]

  nuts_sublist = foo(nuts) #
  total_height = sum([nut[0] for nut in nuts_sublist])
  total_thickness = sum([nut[1] for nut in nuts_sublist])
  etc...

I don't want to rebuild nuts_sublist to calculate each statistic. It's
hard learning to talk another language!


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Markus Triska  
View profile  
 More options Sep 24 2007, 2:54 am
Newsgroups: comp.lang.prolog
From: Markus Triska <tri...@logic.at>
Date: Mon, 24 Sep 2007 08:54:53 +0200
Local: Mon, Sep 24 2007 2:54 am
Subject: Re: Summing. I'm still living in imperative land.

Chui Tey <t...@cognoware.com> writes:
>   total_height = sum([nut[0] for nut in nuts_sublist])

Suppose Sub = [t(5,10,2),t(8,10,3)], then:

   ?- maplist(arg(1), $Sub, Hs), sumlist(Hs, TotalH).
   %@ Hs = [5, 8],
   %@ TotalH = 13

>   total_thickness = sum([nut[1] for nut in nuts_sublist])

   ?- maplist(arg(2), $Sub, Ts), sumlist(Ts, TotalT).
   %@ Ts = [10, 10],
   %@ TotalT = 20

--
comp.lang.prolog FAQ: http://www.logic.at/prolog/faq/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chui Tey  
View profile  
 More options Sep 24 2007, 6:51 am
Newsgroups: comp.lang.prolog
From: Chui Tey <t...@cognoware.com>
Date: Mon, 24 Sep 2007 03:51:00 -0700
Subject: Re: Summing. I'm still living in imperative land.

>    ?- maplist(arg(2), $Sub, Ts), sumlist(Ts, TotalT).
>    %@ Ts = [10, 10],
>    %@ TotalT = 20

Thanks! arg/3 is exactly what I was looking for!

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »