Fumagalli_Motta_Tarantino_2020.Models

This submodule provides the implementations of the models presented in Fumagalli et al. (2020) as well as extension of these models by Manuel Bieri.

Basic Usage

import Fumagalli_Motta_Tarantino_2020 as FMT20

# see list below for the available models
model = FMT20.OptimalMergerPolicy()

# print summary
print(model)

# get summary as dict
summary = model.summary()

# check whether a killer acquisition occurred
print(model.is_killer_acquisition())

# get the optimal merger policy
print(model.get_optimal_merger_policy())

Available Models

The following models are available:

1"""
2.. include:: README.md
3"""
4
5from Fumagalli_Motta_Tarantino_2020.Models.Base import *
6from Fumagalli_Motta_Tarantino_2020.Models.Extension import *
7from Fumagalli_Motta_Tarantino_2020.Models.BaseExtended import *
8from Fumagalli_Motta_Tarantino_2020.Models.Types import *