Tagged Questions
Standard ML of New Jersey (SML/NJ)
8
votes
1answer
83 views
How to convert negative integers to strings in SML with minus sign instead of tilde?
The standard SML library function Int.toString prefixes negative numbers with ~ instead of -. Is there a library function to use - instead, short of writing
fun i2s i =
if i < 0 then "-" ^ ...
5
votes
1answer
151 views
SML list equality oddness
I have this bit of code:
fun foldr2(f, x::xs) =
if xs = [] then
x
else
f(x, foldr2(f, xs))
With the type signature
(''a * ''a -> ''a) * ''a list -> ''a
Looks pretty ...
5
votes
5answers
1k views
4
votes
1answer
104 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 ...
4
votes
1answer
1k views
Line Comments in Standard ML
I'm learning ML, with the SML/NJ dialect. What I'm trying to figure out is if there is a line comment operator. I found the block comment operator, (* ... *), but I really miss line comments.
...
4
votes
4answers
548 views
Using ML in “Real-World” Applications
I really liked learning ML at college. I find functional programming often a refreshingly elegant way to write certain algorithms. I have heard of F# and played around with that a bit. Still, I've ...
3
votes
1answer
55 views
SML Function on record list
I'm trying to declare a function that takes a list of records inside a tuple as an argument but the syntax is not as intuitive as I would have liked.
Here's what I'm trying to do:
type Player = ...
3
votes
1answer
57 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
359 views
SML-NJ, how to compile standalone executable
I start to learn Standard ML, and now I try to use Standard ML of New Jersey compiler.
Now I can use interactive loop, but how I can compile source file to standalone executable?
In C, for example, ...
3
votes
1answer
88 views
polymorphic lists in ML
I have this snippet of the code in ML:
local
fun unfolder( [] , n ) = []
| unfolder( l::ls, n ) = (n, l) :: unfolder( ls, n )
in
fun flat list = unfolder(list, 1)
end;
it gives me an ...
3
votes
2answers
432 views
3
votes
1answer
301 views
anonymous function in SML
I have this below function and it works
(fn x => x * 2) 2;
but for this below one, it is not working
(fn x y => x + y ) 2 3;
can anyone tell me why? or help give me some hint to get it to ...
3
votes
2answers
940 views
How to coerce a type in SML (like casting)
I'm creating a structure of Rationals (int * int) and one of my functions is:
fun diff ((n, d), (n', d')) = let val (top, bot) = sum ((n, d), (~n', d'))
in
...
2
votes
2answers
41 views
find whether a string is substring of other string in SML NJ
In SML NJ, I want to find whether a string is substring of another string and find its index. Can any one help me with this?
2
votes
1answer
47 views
How to build SML/NJ executable on Mac
I have an SML/NJ program that I can run as a heap image, and I want to create a standalone executable binary. However, the heap2exec tool in SML/NJ 110.73 always yields errors for me.
I created my ...
2
votes
1answer
55 views
Why is my function of type 'a list * 'a list -> 'b list?
I think I want it be be of type 'a list * 'a list -> 'a list .
intersection should return the intersection of two lists
sample input and output:
intersection ([1],[1]);
[1]
intersection ...
2
votes
1answer
83 views
Simple SML code error
I have just started learning SML and still in the process of making sense of its error messages.
when trying to input the function definition below
val rec : real->real = fn 0.0 => 0.0 | ...
2
votes
1answer
92 views
Confusing type declaration?
I haven't worked with SML in awhile and I came across this line of code:
type memory = string -> int;
Does this define 'memory' to be a function which takes a string a returns an int, or ...
2
votes
2answers
95 views
How do I access a random member of a Tuple?
I would like to access a random member of a tuple and I'm not sure how to set #n to a variable.
Here is my code:
val lis = ("a","b","c","d")
val randNumber = Random.randRange (1,4) (Random.rand ...
2
votes
1answer
409 views
open knight's tour (backtracking) algorithm in smlnj
I have to write SML code to solve knight's tour problem in backtracking. The chess knight must run all over the chessboard (size: NxN) and must visit each square exactly once (no need to come back in ...
2
votes
1answer
75 views
Lazy suspended tail in sml
I was going through some notes and I realized something is amiss.
When emulating lazy computation (without open Lazy;) one can do the following for a stream of ones.
datatype 'a susp = Susp of (unit ...
2
votes
1answer
100 views
standard ml value restriction errors
hi i need help understanding why I am getting a value restriction error in this code and how I can solve it if possible.
In particular in val cnil, I am trying to create an empty CLIST structure to ...
2
votes
0answers
101 views
Standard ML / CML wrong operator - operand error
I am trying to implement a concurrent list using CML extensions of Standard ML but i am running into errors that are probably to do with my being a newbie in Standard ML. I have implemented the clist ...
2
votes
1answer
60 views
Can I expand a typedef in SMLNJ?
So I was writing up some code in standard ML, and trying to compile it with smlnj. I got the following error:
Error: operator and operand don't agree [tycon mismatch]
operator domain: unit -> ...
2
votes
0answers
36 views
How to ensure the correct elements are being added to a recursive datatype? [closed]
Possible Duplicate:
Output is truncated with #-signs in the REPL
Say I have a recursive datatype e.g, accumulating various combinations of fruits
datatype fruits = Apple | Orange | ...
2
votes
1answer
161 views
mechanism to get element from the list
is it possible to get element from the list in SML of New Jersey without using function head and tail, something like that:
val a = [1,2,3];
a[1];
thanks in advance
2
votes
1answer
99 views
Seuqences in ML (finite & infinnite)
Okay,
I've got the next definition of sequence:
datatype 'a seq = Nil | Cons of 'a * (unit-> 'a seq);
I need to implement the next function:
filterq_n:('a -> bool) -> int -> 'a seq ...
2
votes
1answer
95 views
type problem in sml
I must write a function wich "un-nests" a list.
example :
input [7,[[8]],[[5,[9]]],6] -> output (1,7),(3,8),(3,5),(4,9),(1,6)
I have the function but i can't use it because a type problem.
The ...
2
votes
1answer
318 views
warning in the ML
can somebody please explain, what does this warning mean?
stdIn:18.35 Warning: calling polyEqual
and why do I have "a and not 'a in the following statement:
val alreadyVisited = fn : ''a * ''a ...
2
votes
1answer
256 views
Standard ML Binary Tree
I am still having problems with this so I can going to ask for more help.
We are given:
datatype which = STRING of string | INT of int
Part 1. We are told we need to created another datatype named ...
2
votes
2answers
414 views
Standard ML Binary Tree Help!
I'm studying ML in class and I've run into a homework problem I am stuck on. I've spent all day yesterday searching but made little progress and we did not talk about this in class, so I am hoping you ...
2
votes
1answer
54 views
New to ML: How to store return values of type a* a* a*
Hi
I have a program that returns int*int
(Example for illustration purposes):
fun program(a,b) = (1,2)
I want to do something along the lines:
fun program(a,b)
if a = 0 then (1,2)
else
...
2
votes
3answers
703 views
SML/NJ - Pattern Matching an Dynamic Typing
Is it possible to write functions with dynamically typed input parameters?
I tried pattern matching, but apparently it does not work like this.
I wish to do something like this:
fun firstStr ...
2
votes
3answers
2k views
IDE's for Standard ML of New Jersey
I'm having to write a whole bunch of SML code this coming week so I was hoping if anyone knew:
A good Standard ML IDE?
Or a good text editor for Linux that has code-highlighting for SML? I know ...
2
votes
2answers
679 views
Does SMLNJ have any sort of debugger?
I have looked through the SMLNJ User Guide and can't find anything about debugging capabilities. I'd love to just see a stack trace, or step through a function. Is this possible. Are there other ...
2
votes
2answers
594 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
2answers
35 views
Typecasting in SML
I'm new to SML, and am using the SMLNJ dialect.
For some purpose I have been trying to typecast 3 to 3.0 (int to real).
Could not find a way out. How can I do this? How can I convert between types?
1
vote
1answer
24 views
SMLNJ want to remove “val it = () : unit” from every print statement execution
I am writing sml programs which run on smlnj and mlton (not interactive). When I use print statements in the the sml file, smlnj always adds val it = () : unit to the output, which clutters up the ...
1
vote
1answer
27 views
How do I time my sml code?
Can anyone tell me how I can time my sml code?
I have implemented several different versions of the same algorithm and would like to time them and perhaps even know the memoryusage?
1
vote
1answer
47 views
How do I run freestanding scripts with SML/NJ?
How do I use SML/NJ to run a script which reads from STDIN and writes to STDOUT say? Is there a way to get rid of the output from the interpreter itself?
1
vote
2answers
59 views
sml syntax having a hard time looking up documentation
I am trying to "simulate" a pass by value result function with the following code but there seems to be a syntax error. I've been looking through sml tutorials but I'm having a hard time figuring out ...
1
vote
3answers
128 views
in smlnj how do you convert “string option” to “string”?
Please help I have no idea how what a string option does.
is it possible to convert string option to a string?
1
vote
1answer
70 views
Working with “SML of new jersey”
I download "SML of new jersey" for windows vista.
I work on ML file which call "a.ml" in libary c.
Now I want to load all the commands in the file to the interpter, but I don't succsses.
I tried ...
1
vote
3answers
179 views
factorial function input int, output real?
This is absolutely driving me nuts. The supposed simplest thing I can imagine and I can't do it.
I just want to computer factorial inputting an int and output a real.
I've tried to coerce in ...
1
vote
1answer
235 views
use operation in sml (where is current directory smlnj windows)
I have never used SML on a Windows machine (have before on a unix machine w/ emacs).
for the life of me I cannot find the current directory when in the sml environment. If I attempt to: use ...
1
vote
1answer
79 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
1answer
189 views
Increasing the print depth in SML/NJ
I'm trying to get SML/NJ to print out a result at the top level without
putting # signs everywhere.
According to some old docs (and a post to this newsgroup on 2001), it
should be possible to use ...
1
vote
1answer
63 views
code optimization
I must write a function "to_string" wich receives this datatype
datatype prop = Atom of string | Not of prop | And of prop*prop | Or of prop*prop;
and returns a string.
Example
show
...
1
vote
1answer
96 views
catching exceptions in ML
is it possible in ML catch every possible exception? for example if I don't know what exception might be, thanks in advance
1
vote
1answer
127 views
handling exceptions in ML
everyone, I'm trying to understand how exceptions work in ML, but I have strange error, and I can't figure out what is wrong:
exception Factorial
fun checked_factorial n =
if n < 0 then
...