Standard ML Standard ML is a polymorphic high-level functional language with compile-time type checking and type inference. It is a strict language with immutable data types, updateable references, abstract data types and parametric modules. It has a proper module system that provides a powerful ...
1
vote
1answer
262 views
Checking the contents of a char list list in sml
My question is like the one here.
I'm working on a char list list and I need to check that 1-9 are used once in every list, but also once in every position in the list.
My code looks like this:
...
4
votes
1answer
133 views
Output is truncated with #-signs in the REPL
I wrote a function which works as expected but i don't understand why the output is like that.
Function:
datatype prop = Atom of string | Not of prop | And of prop*prop | Or of prop*prop;
(* XOR ...
2
votes
2answers
165 views
SML: function with multiple outputs
I´m a newbie in SML and I´d like to update my function so that it has two outputs: a list AND 1 or 0. The function was proposed here: SML: Remove the entry from the List. It returns an updated list ...
1
vote
1answer
100 views
Removing hash from ml output
I have written an ml function and in the output i am getting
out = Mary ("a",[Zary #,Zary #])
where Mary and Zary are constructors. But as you can see there are some "#" in the output.
if i do
val ...
1
vote
3answers
155 views
Expanding # in sml
Suppose I have a list in sml which is very big then sml shows a few of the entries and then starts showing # character.
Could someone tell me how could I view the whole list?
0
votes
1answer
266 views
char list list -> bool
Does anyone know how to declare a function
rscheck : char list list -> bool
, that checks, if the number 1-9 are used once in every row and every list... so it returns true?
like in a ...
0
votes
1answer
113 views
Help sml - troubled
How to declare a function so Listn : ' ' a list -> ' ' a list -> bool, listn xs and ys return true.
Example: lisen [#"1" #"2"] , [#"1" "#3"] return false and [#"1" , #"2"] [#"2" , #"1"] return ...
30
votes
3answers
3k views
25
votes
6answers
6k views
Haskell or Standard ML for beginners?
I'm going to be teaching a lower-division course in discrete structures. I have selected the text book Discrete Structures, Logic, and Computability in part because it contains examples and concepts ...
19
votes
8answers
1k views
Explaining pattern matching vs switch
I have been trying to explain the difference between switch statements and pattern matching(F#) to a couple of people but I haven't really been able to explain it well..most of the time they just look ...
6
votes
1answer
129 views
Lazy datatypes in Objective C
In SML, the following is possible for modelling lazy programming,
// Have a datatype to wrap a computation
datatype 'a susp = Susp of (unit -> 'a)
// A function to hold the computation
fun delay(f ...
5
votes
5answers
1k views
1
vote
7answers
989 views
What is SML used for?
What are the uses of SML in the real word?
Are its practical uses similar to that of Prolog?
3
votes
1answer
85 views
How to disable SMLNJ warnings?
I'm trying to write command line scripts, but SML's warnings obfuscate the interface.
The docs say to use:
Compiler.Control.printWarnings := false;
But SMLNJ has since renamed these to:
...
3
votes
1answer
115 views
Recursive Datatypes and types in Objective C
Related:
Lazy datatypes in Objective C
From the related question I was able to figure out how to use block objects to mimic suspended computation, but I am still trying to grasp the concept. ...
2
votes
1answer
92 views
Need help understanding currying
Here is an example I picked up from this ebook (http://www.cs.cornell.edu/riccardo/prog-smlnj/notes-011001.pdf)
-fun curry (f:'a * 'b -> 'c) = fn (x:'a) => fn (y:'b) => f (x,y);
val curry = ...
5
votes
2answers
227 views
Weight-Biased Leftist Heaps: advantages of top-down version of merge?
I am self-studying Okasaki's Purely Functional Data Structures, now on exercise 3.4, which asks to reason about and implement a weight-biased leftist heap. This is my basic implementation:
(* 3.4 (b) ...
4
votes
2answers
412 views
How can I print polymorphic values in Standard ML?
Is there a way to print polymorphic values in Standard ML (SML/NJ specifically)? I have a polymorphic function that is not doing what I want and due to the abysmal state that is debugging in SML (see ...
2
votes
2answers
187 views
SML - unbound variable or constructor
I have the next code:
datatype expr = K of string| Number2 of expr * (expr list);
datatype number = Number1 of string | Number3 of int;
fun append (nil, l2) = l2
| append (x::xs, l2) = ...
2
votes
2answers
645 views
How can I customize the SML/NJ interactive loop?
I'm new to Standard ML and I'm trying to get my head around the SML/NJ runtime environment. I want to adapt it to my needs. Specifically, I want to:
Use IntInf by default
Prevent it from truncating ...
1
vote
1answer
95 views
SML: Remove the entry from the List
How can I delete the element elem in list L? If the list does not contain elem, then the function should return the list unchanged.
For instance:
L = [1, 3, 4, 0, 5, 7]
elem = 5
So far I have ...
1
vote
1answer
161 views
Well founded induction on trees
I have an exam (Functional Programming in SML) coming up in a week. I have become fairly confident in the programming language SML and the functional paradigm, but I have a quite big problem with ...
1
vote
1answer
71 views
exhaustive patterns
everyone I'm learning ML, can somebody please explain what does it mean exhaustive patterns? thanks in advance
1
vote
1answer
456 views
How to 'fix' the SML/NJ interactive system to use Arrow Keys
I'm having some trouble using SML/NJ interactive system, namely, that when I try to use my arrow keys (either left or right to make a correction in the expression I've typed, up to repeat the last ...
0
votes
3answers
55 views
Standard ML repeat last command, left arrow?
I am learning standard ML using its interpreter. Sometimes I make typo and just want to repeat the previous command like in Linux shell. However, up arrow will end up with printing special characters ...
0
votes
1answer
176 views
using selection sort in SML [closed]
I have an SML assignment and one of the questions is to implement a function:
I have a sample run for my program.
val x:stu list=[{name=”John”,mt=77},{name=”Alis”,mt=87},{name=”Ted”,mt=47}];
...
0
votes
1answer
271 views
Using Lists/Pattern Matching in SML/NJ
I'm having trouble with pattern matching with lists in SML. I'm trying to create a function that takes a 2x2 real matrix (defined as 'a list list) and creates a complex (real * real). The matrix is ...
0
votes
1answer
110 views
recursive unpacking of a list through function signatures
I'm trying to write a function in sml which 'unpacks' a nest list of arbitrary depth. For example unpack [[[1,2]]] should yield [1,2]. I 'm trying something like :
fun unpack xs = if nestedp (xs) ...
0
votes
3answers
274 views
Filling a normal binary tree in ML with values
Where let's say:
datatype bin_tree = Empty |
Node of value * bin_tree * bin_tree
How would I go about filling a binary tree (not a binary search tree where left is smaller than ...
0
votes
1answer
275 views
How to detect eof in ml-lex
While writing a code in ml-lex
we need to write to write the eof function
val eof = fn () => EOF;
is this a necessary part to write
also if i want my lexer to stop at the detection of an eof then ...
0
votes
1answer
167 views
Changing a char in a char list list using SML
I'm trying to declare a function that will let me change a number in a char list list (I'm still working on the sudoku game from earlier).
changesudo : char list list -> int * int * char -> char list ...
0
votes
1answer
355 views
Turning a string into a char list list using SML
I'm trying to turn a string into a char list list and I have the following code:
fun linelist file =
let
val instr = TextIO.openIn file
...
0
votes
3answers
101 views
SML - a small problem
I have given : spacegather : string list -> string
I have to make a function, so it turns the call:
spacegather ["I", "am", "nice"] to -> "I am nice"
thanx
0
votes
2answers
349 views
SML question about foldr
Hey, im trying to declare a function, string list -> string, that with the input for instance
["Chicago","city","USA"] should return "Chigago city USA". And im having a bit of trouble,
what i did so ...
0
votes
2answers
335 views
convert string to list in Standard ML [closed]
Possible Duplicate:
Open file in ML(SMLNJ)
I have a string value which has value like this:
"[(1,2,3),(2,3),(6,8)]" -> string
but I want to have these values in int type like this:
...
-1
votes
1answer
115 views
SML - lists and recursion
I have list in SML, which contains members from datatype "expr" (list "b").
I also have function "What", which it's arguments are only from dayatype "expr".
Now I have problem in the next code:
...
-1
votes
2answers
1k views
Open file in ML(SMLNJ)
I need to read file in ML (SLMNJ) and save it in some structures. I need to read some data that points to graph declaration:
[( 1 , 2 , 13 ),( 2 , 3 , 3 ),( 2 , 4 , 8 ),( 2 , 5 , 4 ),( 3 , 1 , 5 ),( ...