{source}
<?php
class LastPublication{
public function getID(){
$db = JFactory::getDBO();
$query = $db->getQuery(true);
$query->select(‘id’);
$query->from(‘#__jresearch_member’);
$query->where(‘firstname = “Alejandro”‘);
$db->setQuery($query);
$result = $db->loadResult();
return $result;
}
public function getLatestPublications() {
$n = 0;
$db = JFactory::getDBO();
$latestPub = array();
$memberId = $this->getID();
$query = ‘SELECT p.* FROM ‘.$db->quoteName(‘#__jresearch_publication_internal_author’).’ ia JOIN ‘.$db->quoteName(‘#__jresearch_publication’).’ p WHERE ‘.$db->quoteName(‘p’).’.’.$db->quoteName(‘id’).’ = ‘.$db->quoteName(‘ia’).’.’.$db->quoteName(‘id_publication’).’ ‘.’ AND ‘.$db->quoteName(‘ia’).’.’.$db->quoteName(‘id_staff_member’).’ = ‘.$db->Quote($memberId).’ AND p.published = ‘.$db->Quote(‘1′).’ AND p.internal = ‘.$db->Quote(‘1′).’ ORDER BY ‘.$db->quoteName(‘p’).’.’.$db->quoteName(‘year’).’ DESC, STR_TO_DATE(p.’.$db->quoteName(‘month’).’, \’%M\’ ) DESC, ‘.’p.’.$db->quoteName(‘created’).’ DESC’;
if($n > 0){
$query .= ‘ LIMIT 0, ‘.$n;
}
$db->setQuery($query);
$result = $db->loadAssocList();
foreach($result as $row){
$latestPub[] = $row;
}
return $latestPub;
}
}
?>
{/source}
Alejandro Saavedra Nieves
Posdoctoral Fellow
Statistics and Operations Research Area (265)
Research Lines:
- Cooperative Game Theory
- Cost allocation problems
- Operations Research
- Optimization
Contact Information
CV
I have obtained a Degree in Mathematics (2012) and a Master Degree in Statistical Techniques and Operations Research (2014) by the University of Santiago de Compostela. I have received a PhD in Statistics and Operations Research by the University of Vigo in March 2019. I am currently a Postdoctoral researcher at SiDOR group.
My research interest are Cooperative Game Theory, Operations Research and their applications. More precisely, the lines of research to be addressed are, among others, the following:
- The centralized inventory problems, that describe multi-agent cooperative situations in which several agents coordinate to place joint orders.
- The interactive sequencing situations, that analyse situations of processing a collection of jobs in a single machine under cooperation.
- The computational problems that arise in exactly calculating coalitional values for those large-scaled situations from a statistical approach.
Last Publication
{source}
<?php
$lastP = new LastPublication();
$Publications = $lastP->getLatestPublications();
?>
<ul>
<?php
$count = 0;
foreach ($Publications as $p):
?>
<li><a href=”en/publications?view=publication&task=show&id=<?php echo $p[‘id’] ?>”><?php echo $p[‘title’]; ?></a></li>
<?php
if($count == 3){
break;
}
$count++;
endforeach;
?>
</ul>
{/source}