Displaying 20 results from an estimated 90 matches similar to: "problem with Erlang function"
2012 Feb 17
1
R's list data structure
Given
dayOfWeekName<-c("Mon","Tue","Wed","Thu","Fri","Sat","Sun");
dayOfWeekOrdinal<-c(1,2,3,4,5,6,0);
dayOfWeekWorkDay<-c(TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE);
weekProfile<-list(dow=dayOfWeekName,dowI=dayOfWeekOrdinal,dowW=dayOfWeekWorkDay)
1. How can I conditionally get dow, dowI, and dowW from weekProfile?
2009 Feb 13
2
téléchargement et affichage d'image avec HtmlWindow
2012 Mar 07
1
SELECT CASE in RODBC
Hi all,
I have a problem with a variable created by a SELECT CASE statement. See
the code below.
I would like the variable "event" to be a character variabel as I want to
UNION my two SELECTs - and the "event"-variable is a character variable in
the first SELECT result.
I have tried different ways:
* used ' ' in stead of " " around the string I want as the
2008 Jul 24
2
[LLVMdev] Erlang
Hello,
How would you implement an Erlang feature such as the ultra-light processes?
Is llvm prepared for similar situations?
I would appreciate some insight on this.
Thank you very much,
.alvaro.castro.castilla.
2008 Jul 24
0
[LLVMdev] Erlang
Hi Álvaro,
Your question is too vague to answer with any accuracy. Could you be
more specific?
-bw
On Jul 24, 2008, at 1:08 PM, "Álvaro Castro Castilla" <alvaro.castro.castilla at gmail.co
m> wrote:
> Hello,
>
>
> How would you implement an Erlang feature such as the ultra-light
> processes?
> Is llvm prepared for similar situations?
>
> I would
2008 Jul 24
0
[LLVMdev] Erlang
On Jul 24, 2008, at 12:30 PM, Álvaro Castro Castilla wrote:
> Hi,
>
> Sorry for the vagueness.
>
> I'm starting to think about an experimental programming language
> based, among other things, on microthreads, or green threads, as
> Erlang has. I'm still under a very vague stage, just thinking on it,
> so I was wondering on the way this could be achieved.
>
>
2008 Jul 25
0
[LLVMdev] Erlang
2008/7/25 Simon Ask Ulsnes <vinterbleg at gmail.com>:
> 2008/7/24 Owen Anderson <resistor at mac.com>:
>>> * They are isolated and the only way to exchange information is
>>> message passing
>>>
>> This one is hard to guarantee in a compiled context, unless you
>> implement a lot of stuff to track pointer values. Remember, all of
>>
2008 Jul 25
0
[LLVMdev] Erlang
On Fri, 2008-07-25 at 09:19 +0200, Simon Ask Ulsnes wrote:
> 2008/7/24 Owen Anderson <resistor at mac.com>:
> >> * They are isolated and the only way to exchange information is
> >> message passing
> >>
> > This one is hard to guarantee in a compiled context, unless you
> > implement a lot of stuff to track pointer values. Remember, all of
> >
2012 Sep 07
0
[LLVMdev] Publication - ErLLVM: An LLVM backend for Erlang
Hi,
I attach a publication that we have at the ACM Sigplan Erlang Workshop
2012, Copenhagen, Denmark.
The abstract is:
This paper describes ErLLVM, a new backend for the HiPE compiler, the native
code compiler of Erlang/OTP, that targets the LLVM compiler infrastructure.
Besides presenting the overall architecture of ErLLVM and its integration in
Erlang/OTP, we describe the changes to LLVM that
2017 Mar 03
1
[PATCH] erlang: Rename 'message' to something less generic.
It's not possible to define an action which takes a parameter called
'message' because the Erlang bindings use that as the name of an
internal variable. Solve this by renaming the Erlang internal
variable.
Fixes commit 84763d7fca3668c62ee3fe53d0e00a5a672f687b.
---
generator/erlang.ml | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git
2012 Sep 11
1
[LLVMdev] Publication - ErLLVM: An LLVM backend for Erlang
On 9/10/12 5:29 PM, Yiannis Tsiouris wrote:
> ping. :-)
I've been on vacation since August 28 and disabled llvmdev delivery so
that I wouldn't get flooded with emails while I was gone, so I didn't
see your message.
I've added the entry to the publications page, but I haven't made a
separate page for the abstract. Is that alright, or would you like an
abstract page
2001 Sep 06
0
Erlang Loss Function in R
This is my first post here. As a new user of R, I was pleased to discover a
simple and elegant way to compute in R the Erlang Loss Function, which I
present below.
INTRODUCTION
The Erlang Loss Function is defined as
elf(n, a ) = ( a^n/n! ) / ( 1 + a + a^2/2 + a^3/3! + ... + a^n/n!)
for all real numbers a>=0 and all integers n>=0 (except that the function is
undefined when BOTH n and a
2008 Jul 24
2
[LLVMdev] Erlang
Hi,
Sorry for the vagueness.
I'm starting to think about an experimental programming language
based, among other things, on microthreads, or green threads, as
Erlang has. I'm still under a very vague stage, just thinking on it,
so I was wondering on the way this could be achieved.
What I know from microthreads are things like:
* They don't have their own stack
* Switching between
2011 Nov 15
3
[PATCH 1/3] out of tree build: erlang
From: Hilko Bengen <bengen at hilluzination.de>
---
erlang/Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/erlang/Makefile.am b/erlang/Makefile.am
index f336375..2c9e359 100644
--- a/erlang/Makefile.am
+++ b/erlang/Makefile.am
@@ -32,7 +32,7 @@ erlang_bindir = $(libdir)/erlang/lib/$(PACKAGE_NAME)-$(PACKAGE_VERSION)/ebin
erlang_bin_DATA = guestfs.beam
2012 Sep 10
0
[LLVMdev] Publication - ErLLVM: An LLVM backend for Erlang
ping. :-)
On 09/07/2012 08:24 PM, Yiannis Tsiouris wrote:
> [...]
> The citation is the following (this time with a url to the paper): K.
> Sagonas, C. Stavrakakis, and Y. Tsiouris. "ErLLVM: An LLVM backend
> for Erlang"[1]. In Eleventh ACM SIGPLAN Erlang Workshop, September
> 2012. ACM Press.
>
> [1]: http://erllvm.softlab.ntua.gr/files/erlang03-sagonas.pdf
>
2005 Dec 18
1
date_select and impossible dates....
hi,
using date_select right from a generated scaffold code leads to an
error if an impossible date is selected (like the 31 of february)
can''t get a way to correct this via a validation....
in fact that make sens because in the model i have the ''dateofbirth''
object which is a date object....
so providing an impossible day-month-year trio leads to an impossible
2008 Jul 25
4
[LLVMdev] Erlang
2008/7/24 Owen Anderson <resistor at mac.com>:
>> * They are isolated and the only way to exchange information is
>> message passing
>>
> This one is hard to guarantee in a compiled context, unless you
> implement a lot of stuff to track pointer values. Remember, all of
> these threads will be sharing an address space. If you want true
> protection, you'll
2013 Aug 20
2
Openmirage, erlang on xen, etc
I''m really interested in openmirage, erlang on xen, mini-os, rump kernels (just saw that today), or anything that runs directly on xen. I think there''s a huge potential and use case with these technologies.
I have a random question though. I''ve only seen these type of things running on Xen. Is there any specific reason you don''t see much on KVM? Maybe
2011 Mar 28
0
GSoC Project, Support Erlang Language
"Support Erlang Language" By Vladimir Zaytsev, Xapian, 2011
*About me*
Name: Vladimir Zaytsev
E-mail address: vladimir at zvm.me
WWW: zvm.me/, facebook.com/vladimir.zaytsev<http://www.facebook.com/vladimir.zaytsev>
Emergency contact phone number: +79028195844
Short biography:
I was born in 5th Febrary, 1991 in Donetsk, USSR; now live in
Khanty-Mansiysk, Russia. In 2008
2011 Mar 29
0
GSoC Project: Support Erlang Language
"Support Erlang Language" By Vladimir Zaytsev, Xapian, 2011
*About me*
Name: Vladimir Zaytsev
E-mail address: vladimir at zvm.me
WWW: zvm.me/, facebook.com/vladimir.zaytsev<http://www.facebook.com/vladimir.zaytsev>
Emergency contact phone number: +79028195844
Short biography:
I was born in 5th Febrary, 1991 in Donetsk, USSR; now live in
Khanty-Mansiysk, Russia. In 2008