SConscript revision 13221
112600Sodanrc@yahoo.com.br# -*- mode:python -*- 212600Sodanrc@yahoo.com.br 312600Sodanrc@yahoo.com.br# Copyright (c) 2018 Inria 412600Sodanrc@yahoo.com.br# All rights reserved. 512600Sodanrc@yahoo.com.br# 612600Sodanrc@yahoo.com.br# Redistribution and use in source and binary forms, with or without 712600Sodanrc@yahoo.com.br# modification, are permitted provided that the following conditions are 812600Sodanrc@yahoo.com.br# met: redistributions of source code must retain the above copyright 912600Sodanrc@yahoo.com.br# notice, this list of conditions and the following disclaimer; 1012600Sodanrc@yahoo.com.br# redistributions in binary form must reproduce the above copyright 1112600Sodanrc@yahoo.com.br# notice, this list of conditions and the following disclaimer in the 1212600Sodanrc@yahoo.com.br# documentation and/or other materials provided with the distribution; 1312600Sodanrc@yahoo.com.br# neither the name of the copyright holders nor the names of its 1412600Sodanrc@yahoo.com.br# contributors may be used to endorse or promote products derived from 1512600Sodanrc@yahoo.com.br# this software without specific prior written permission. 1612600Sodanrc@yahoo.com.br# 1712600Sodanrc@yahoo.com.br# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1812600Sodanrc@yahoo.com.br# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1912600Sodanrc@yahoo.com.br# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 2012600Sodanrc@yahoo.com.br# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 2112600Sodanrc@yahoo.com.br# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 2212600Sodanrc@yahoo.com.br# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 2312600Sodanrc@yahoo.com.br# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2412600Sodanrc@yahoo.com.br# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2512600Sodanrc@yahoo.com.br# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2612600Sodanrc@yahoo.com.br# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 2712600Sodanrc@yahoo.com.br# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2812600Sodanrc@yahoo.com.br# 2912600Sodanrc@yahoo.com.br# Authors: Daniel Carvalho 3012600Sodanrc@yahoo.com.br 3112600Sodanrc@yahoo.com.brImport('*') 3212600Sodanrc@yahoo.com.br 3312600Sodanrc@yahoo.com.brSimObject('ReplacementPolicies.py') 3412600Sodanrc@yahoo.com.br 3512634Sodanrc@yahoo.com.brSource('bip_rp.cc') 3612626Sodanrc@yahoo.com.brSource('brrip_rp.cc') 3712607Sodanrc@yahoo.com.brSource('fifo_rp.cc') 3812628Sodanrc@yahoo.com.brSource('lfu_rp.cc') 3912600Sodanrc@yahoo.com.brSource('lru_rp.cc') 4012601Sodanrc@yahoo.com.brSource('mru_rp.cc') 4112600Sodanrc@yahoo.com.brSource('random_rp.cc') 4212685Sodanrc@yahoo.com.brSource('second_chance_rp.cc') 4313221Sodanrc@yahoo.com.brSource('tree_plru_rp.cc') 44