- Copy
jupyter-lab.desktop
to~/.local/share/applications
- Copy
jupyter-lab.svg
to~/.local/share/icons
- Restart gnome-desktop session (Alt+F2 ->
restart
)
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
library chess_board; | |
import 'dart:async'; | |
import 'package:chess_vectors_flutter/chess_vectors_flutter.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:chess/chess.dart' as chess; | |
typedef Null MoveCallback(String moveNotation); | |
typedef Null CheckMateCallback(String winColor); |
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
----- BEGIN LICENSE ----- | |
Member J2TeaM | |
Single User License | |
EA7E-1011316 | |
D7DA350E 1B8B0760 972F8B60 F3E64036 | |
B9B4E234 F356F38F 0AD1E3B7 0E9C5FAD | |
FA0A2ABE 25F65BD8 D51458E5 3923CE80 | |
87428428 79079A01 AA69F319 A1AF29A4 | |
A684C2DC 0B1583D4 19CBD290 217618CD |
The basic idea is to transform dot product into log form:
log(a.b) = log(a1*b1 + a2*b2 + ... + an*bn)
= log(exp(log a1+log b1) + exp(log a2+log b2) + ... + exp(log an+log bn))
and then apply something like Horner's method, but for exp-s, so result looks like (I'll simplify log a1 to la1, log a2 to la2, ...):
OlderNewer