|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1048 ] | Faculty of Computer Science, 'Al. I. Cuza' University |
---|---|
Organisation name | Faculty of Computer Science, 'Al. I. Cuza' University |
Short name or acronym | Faculty of Computer Science, 'Al. I. Cuza' University |
Organisation type | Center |
Activity type | Speech technology |
Address | General Berthelot Street 16 |
Postal Code | 6600 |
City | Iasi |
Country | Romania |
Phone | + +40 32 20 10 90 |
Fax | + +40 32 20 14 90 |
secret_(on)_infoiasi.ro | |
Organisation URL | http://www.infoiasi.ro/fcs/ |
Logo | Description |
![]() |
The research and the scientific activities are organized by specific "interest working groups". Several main directions can be identified: Algebraic Fundamentals of Computer Science, Coding Theory and Cryptography, Combinatorial Optimization. Theory of Graphs Applied to Computer Science, Computability and Complexity, Distributed Systems Modelling (Petri Nets), Evolutionary Methods and Genetic Algorithms Game Theory, Interaction and Mobility (Agents), Logic Programming and Data Bases, Molecular Computing, Natural Language Processing, Semantics and Concurrency. |
Contact | |
Name | Mr. Dan Cristea |
Function | Dean / Senior Lecturer |
Department | |
dcristea_(on)_infoiasi.ro | |
Phone | + +40 32 20 15 42 |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |