@ftudisco
In the file real_hypergraph_data.jl the mappings are:
mappings = Dict("linear" => (x -> x, x -> x, x -> x, x -> x), "log-exp" => (x -> x, x -> x.^(1/10), x -> log.(x), x -> exp.(x)), "max" => (x -> x, x -> x.^(1/5), x -> x.^15, x -> x.^(1/15)) )
In your paper it states:
log-exp mapping is g(x)=x^1/2 instead of x^1/10
max mapping has g=id and not x^1/5 and alpha=10 instead of 15.
Is there a reason for that?
Thanks!