From: "lyj238@ios.ac.cn" <lyj238@ios.ac.cn>
Dear all:
I need a flat function, which can be explained bya small example:
flat [[1,2],[2,3],[5,4]]=[1,2,3,5,4];
Its Intuitive meaning:
flaten a list of list into a list?
Is there such a function flat in Isabelle's library.
I have tried to find, but fail?
Need I define it by myself?
regards!
From: "lyj238@ios.ac.cn" <lyj238@ios.ac.cn>
Dear all:
I need a flat function, which can be explained bya small example:
flat [[1,2],[2,3],[5,4]]=[1,2,3,5,4];
Its Intuitive meaning:
flaten a list of list into a list?
Is there such a function flat in Isabelle's library.
I have tried to find, but fail?
Need I define it by myself?
regards!
From: Gerwin Klein <Gerwin.Klein@nicta.com.au>
find_consts "'a list list ⇒ 'a list"
found 4 constant(s):
List.product_lists :: "'a list list ⇒ 'a list list"
List.transpose :: "'a list list ⇒ 'a list list"
List.transpose_sumC :: "'a list list ⇒ 'a list list"
List.concat :: "'a list list ⇒ 'a list”
thm concat.simps
concat [] = []
concat (?x # ?xs) = ?x @ concat ?xs
List.concat is the one your want.
Cheers,
Gerwin
The information in this e-mail may be confidential and subject to legal professional privilege and/or copyright. National ICT Australia Limited accepts no liability for any damage caused by this email or its attachments.
From: Gerwin Klein <Gerwin.Klein@nicta.com.au>
find_consts "'a list list ⇒ 'a list"
found 4 constant(s):
List.product_lists :: "'a list list ⇒ 'a list list"
List.transpose :: "'a list list ⇒ 'a list list"
List.transpose_sumC :: "'a list list ⇒ 'a list list"
List.concat :: "'a list list ⇒ 'a list”
thm concat.simps
concat [] = []
concat (?x # ?xs) = ?x @ concat ?xs
List.concat is the one your want.
Cheers,
Gerwin
The information in this e-mail may be confidential and subject to legal professional privilege and/or copyright. National ICT Australia Limited accepts no liability for any damage caused by this email or its attachments.
Last updated: Nov 21 2024 at 12:39 UTC