This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Cell(object): | |
def __init__(self, L): | |
self.L = L | |
self.edges = set() | |
self.redus = set() | |
class Chart(object): | |
def __init__(self): | |
self.cont = [] | |
self.visit = set() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ErrorActionPreference = "Stop" | |
$directory = [io.path]::combine($env:LOCALAPPDATA, "microsoft", "team foundation") | |
foreach($versionDirectory in get-childitem $directory) | |
{ | |
$cacheDirectory = Join-Path $versionDirectory.FullName "Cache" | |
$items = Get-ChildItem $cacheDirectory | |
foreach($item in $items) | |
{ | |
Remove-Item -Recurse -Force $item.FullName | |
} |