Skip to content

Instantly share code, notes, and snippets.

View akashks1998's full-sized avatar
😛
Chill mar

Akash kumar singh akashks1998

😛
Chill mar
View GitHub Profile
package com.isolatedCity;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class IsolatedCity {
# The following program checks if a functions symmetric block multilinear representation can be not bounded by 1.
# We check this over all functions on n variables
# A function is a counterexample if its block multilinear rep is not bounded
from sys import argv
import math
import itertools
from mip import *
#from random import seed
# The following program checks if a functions symmetric block multilinear representation can be not bounded by 1.
# We check this over all functions on n variables
# A function is a counterexample if its block multilinear rep is not bounded
from sys import argv
import math
import itertools
from mip import *
#from random import seed
import matplotlib.pyplot as plt 
  
# x axis values 
x = [int(i) for i in input().split()]
# corresponding y axis values 
y = [float(i) for i in input().split()]
  
# plotting the points