using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.Boogie; namespace GPUVerify { interface IKernelArrayInfo { ICollection getGlobalArrays(); ICollection getGroupSharedArrays(); ICollection getPrivateArrays(); ICollection getAllNonLocalArrays(); ICollection getAllArrays(); bool Contains(Variable v); } }