02:24
ski has quit [Ping timeout: 240 seconds]
02:34
schmx is now known as schmrkc
02:48
rks has quit [Read error: Operation timed out]
02:50
rks has joined #ocaml
04:35
mal`` has quit [Ping timeout: 265 seconds]
04:35
maskd has quit [Ping timeout: 245 seconds]
04:36
maskd has joined #ocaml
05:27
ce_CANTIK_cR_YG_ has joined #ocaml
05:27
ce_CANTIK_cR_YG_ has left #ocaml []
05:30
wuj has joined #ocaml
05:47
wuj has quit [Ping timeout: 265 seconds]
07:10
yezariaely has joined #ocaml
07:11
yezariaely has left #ocaml []
07:25
ski has joined #ocaml
07:38
pikachuyann has joined #ocaml
07:58
MilLionsOfLions has quit [Quit: installing a dirty african word brb]
08:06
mal`` has joined #ocaml
08:55
Indian-2010 has joined #ocaml
09:05
mjonsson has quit [Ping timeout: 265 seconds]
09:50
init1 has joined #ocaml
09:51
Elench` has joined #ocaml
09:51
Modius has quit [Quit: I'm big in Japan]
09:55
Elench has quit [Ping timeout: 265 seconds]
10:11
ikaros has joined #ocaml
10:19
Indian-2010 has left #ocaml []
10:28
schmrkc has left #ocaml []
10:57
ztfw has joined #ocaml
11:05
Indian-2010 has joined #ocaml
11:26
Fullma has quit [Ping timeout: 245 seconds]
11:45
Indian-2010 has left #ocaml []
11:47
SurfMaths has joined #ocaml
12:15
dark has quit [Remote host closed the connection]
13:05
Amorphous has quit [Ping timeout: 255 seconds]
13:21
Amorphous has joined #ocaml
13:34
hto has quit [Read error: Connection reset by peer]
13:35
hto has joined #ocaml
14:08
wuj has joined #ocaml
14:11
Fullma has joined #ocaml
14:13
wuj has quit [Ping timeout: 265 seconds]
14:39
noptrix has joined #ocaml
14:39
noptrix has left #ocaml []
14:54
<
albacker >
File "composanteFC.ml", line 89, characters 18-19:
14:54
<
albacker >
Error: This expression has type
14:54
<
albacker >
Graph.Pack.Digraph.V.t -> Graph.Pack.Digraph.V.label Queue.t
14:54
<
albacker >
but an expression was expected of type 'a Queue.t
14:54
<
albacker >
(sorry for pasting >3 lines)
14:55
<
adrien >
composanteCFC takes two arguments and you've called it with only one
14:55
<
albacker >
awsome, thanks :)
14:59
<
ski >
that type error itself practially screams "missing argument in call" :)
14:59
<
adrien >
definitely, I almost answered that before taking a look at the code
15:10
<
albacker >
damn, not working algo.
15:37
emmanuelux has joined #ocaml
16:14
ftrvxmtrx has joined #ocaml
16:25
rmitt_ has joined #ocaml
16:33
Indian-2010 has joined #ocaml
17:16
gnuvince has joined #ocaml
17:18
joewilliams_away is now known as joewilliams
17:23
ftrvxmtrx has quit [Ping timeout: 276 seconds]
17:25
rks is now known as rks`
17:26
ftrvxmtrx has joined #ocaml
17:37
hto has quit [Read error: Connection reset by peer]
18:10
init1 has quit [Quit: Quitte]
18:10
init1 has joined #ocaml
18:11
Indian-2010 has left #ocaml []
18:12
ulfdoz has joined #ocaml
18:16
rwmjones_afk is now known as rwmjones
18:18
<
init1 >
adrien: I'm on #ocaml channel :D
18:37
Smerdyakov has joined #ocaml
19:01
pikachuyann has quit [Remote host closed the connection]
19:02
pikachuyann has joined #ocaml
19:02
ulfdoz_ has joined #ocaml
19:04
Smerdyakov has quit [Quit: BRB]
19:06
ulfdoz has quit [Ping timeout: 260 seconds]
19:06
ulfdoz_ is now known as ulfdoz
19:06
Smerdyakov has joined #ocaml
19:15
pikachuyann has quit [Quit: cya]
19:16
BiDOrD has quit [Read error: Connection timed out]
19:17
BiDOrD_ has joined #ocaml
20:10
emmanuelux has quit [Remote host closed the connection]
20:17
emmanuelux has joined #ocaml
20:17
SurfMaths has left #ocaml []
20:21
gildor has quit [Ping timeout: 272 seconds]
20:22
khia0 has joined #ocaml
20:23
gildor has joined #ocaml
20:33
mfp has quit [Read error: Operation timed out]
20:39
init1 has quit [Quit: Quitte]
20:47
mfp has joined #ocaml
20:50
ikaros_ has joined #ocaml
20:55
ftrvxmtrx has quit [Quit: Leaving]
20:59
agaminde has joined #ocaml
21:00
agaminde has left #ocaml []
21:01
khia0 has left #ocaml []
21:25
<
hcube >
hi! do you know anybody who is using ocaml on arm linux?
21:26
<
hcube >
just setted up a minimal arm linux in qemu virtal machine and tried to compile ocaml
21:26
<
hcube >
unfortunately it did not worked
21:28
<
hcube >
ocamlrun breaks at parsing/parser.ml with glibc exception: double free or corruption
21:40
ftrvxmtrx has joined #ocaml
21:48
Smerdyakov has quit [Quit: Leaving]
21:56
<
hcube >
this is probably a gcc problem
22:44
ikaros_ has quit [Quit: Leave the magic to Houdini]
23:22
ikaros has quit [Quit: Leave the magic to Houdini]
23:24
<
albacker >
if i want to change the elements of an array from another function, should i make a ref array of int or array of ref int?
23:31
<
ski >
arrays are mutable
23:31
ztfw has quit [Remote host closed the connection]
23:32
<
ski >
# let k = Array.make 10 true;;
23:32
<
ski >
# let f a = a.(0) <- false;;
23:32
<
albacker >
youre right.
23:33
<
albacker >
this is not the bug i was searching then. thanks.
23:34
<
ski >
(and btw, you got the behaviour you got there, since you had a (mutable) array, where each element pointed to the
*same* reference cell, so when you changed it, that was reflected in
*all* the elements)
23:34
rmitt_ has quit [Quit: Page closed]
23:35
<
ski >
if you really wanted to create an array, with each (mutable) element initially containing a
*different* (fresh) reference cell, you could do
23:35
<
albacker >
i think this also happend when i tried makin a matrix like Array.make 10 (Array.make 10 true);;
23:36
<
ski >
# let k = Array.init 10 (fun _ -> ref true);;
23:36
<
albacker >
ski: i see.
23:36
<
ski >
when you used `Array.make', `ref true' was already evaluated before the call
23:36
<
ski >
using `Make.init', the current index is passed to the function argument (and is ignored by `_'), then evaluating `ref true' anew for each element
23:37
<
albacker >
Array.init :)
23:37
<
albacker >
thanks a lot.
23:38
<
ski >
(yeah, s/Make/Array/ .. dunno why i wrote `Make')
23:43
<
albacker >
night :)
23:43
<
albacker >
1am here
23:47
<
manveru >
good morning :)
23:51
<
adrien >
good night :P
23:52
<
adrien >
hcube: can't help, but mldonkey is used pretty much everywhere: arm ought to work
23:58
<
albacker >
how can i see the running time of a given algorithm?
23:58
<
albacker >
difference between 2 Unix.time outputs?